File tree Expand file tree Collapse file tree 2 files changed +8
-10
lines changed
lesson_17/bank/bank_app/src
main/java/com/codedifferently/lesson17/bank
test/java/com/codedifferently/lesson17/bank Expand file tree Collapse file tree 2 files changed +8
-10
lines changed Original file line number Diff line number Diff line change 11package com .codedifferently .lesson17 .bank ;
22
3- import java .util .Set ;
4-
53import com .codedifferently .lesson17 .bank .exceptions .InsufficientFundsException ;
4+ import java .util .Set ;
65
76/**
87 * The {@code SavingsAccount} class represents a savings account in a banking system. It extends the
@@ -51,9 +50,9 @@ && getBalance() == other.getBalance()
5150 /**
5251 * Will throw and exception if the user attempt to make a withdrawl while under the instance of
5352 * SavingsAccount.
54- *
55- * And the makes a second withdrawl that will check if there
56- * is a check and throw an error if one comes in.
53+ *
54+ * <p> And the makes a second withdrawl that will check if there is a check and throw an error if
55+ * one comes in.
5756 *
5857 * @param amount The amount to deposit.
5958 */
Original file line number Diff line number Diff line change 11package com .codedifferently .lesson17 .bank ;
22
3- import java .util .Set ;
4- import java .util .UUID ;
5-
63import static org .assertj .core .api .Assertions .assertThat ;
74import static org .assertj .core .api .Assertions .assertThatExceptionOfType ;
8- import org .junit .jupiter .api .BeforeEach ;
9- import org .junit .jupiter .api .Test ;
105
116import com .codedifferently .lesson17 .bank .exceptions .AccountNotFoundException ;
127import com .codedifferently .lesson17 .bank .exceptions .CheckVoidedException ;
8+ import java .util .Set ;
9+ import java .util .UUID ;
10+ import org .junit .jupiter .api .BeforeEach ;
11+ import org .junit .jupiter .api .Test ;
1312
1413class BankAtmTest {
1514
You can’t perform that action at this time.
0 commit comments