Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package prep_24_junit;
- public class ClassToTest {
- int a, b;
- ClassToTest(int a, int b) {
- this.a = a;
- this.b = b;
- }
- public int add() {
- return a + b;
- }
- public int subtract() {
- return a - b;
- }
- public int multiply() {
- return a * b;
- }
- public int divide() {
- return a / b;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment