|
@@ -17,28 +17,28 @@ public class DepositPositiveTest {
|
17
|
17
|
|
18
|
18
|
@Test(expected = IllegalArgumentException.class)
|
19
|
19
|
public void test2() {
|
20
|
|
- test(10.0, 50.0);
|
|
20
|
+ test(10.0, -50.0);
|
21
|
21
|
}
|
22
|
22
|
|
23
|
23
|
@Test(expected = IllegalArgumentException.class)
|
24
|
24
|
public void test3() {
|
25
|
|
- test(55.0, 500.0);
|
|
25
|
+ test(55.0, -500.0);
|
26
|
26
|
}
|
27
|
27
|
|
28
|
28
|
@Test(expected = IllegalArgumentException.class)
|
29
|
29
|
public void test4() {
|
30
|
|
- test(78.0, 90.0);
|
|
30
|
+ test(78.0, -90.0);
|
31
|
31
|
}
|
32
|
32
|
|
33
|
|
- public void test(Double initialBalance, Double witdrawalAmount) {
|
|
33
|
+ public void test(Double initialBalance, Double depositAmount) {
|
34
|
34
|
// given
|
35
|
|
- Double expected = initialBalance + witdrawalAmount;
|
|
35
|
+ Double expected = initialBalance + depositAmount;
|
36
|
36
|
BankAccount bankAccount = new BankAccount();
|
37
|
37
|
Transactable transactable = (Transactable)bankAccount;
|
38
|
38
|
bankAccount.setBalance(initialBalance);
|
39
|
39
|
|
40
|
40
|
// when
|
41
|
|
- transactable.deposit(witdrawalAmount);
|
|
41
|
+ transactable.deposit(depositAmount);
|
42
|
42
|
Double actual = transactable.getBalance();
|
43
|
43
|
|
44
|
44
|
// then
|