File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed
lesson_17/bank/bank_app/src/test/java/com/codedifferently/lesson17/bank Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change 1
1
package com .codedifferently .lesson17 .bank ;
2
2
3
+ import java .util .Map ;
4
+ import java .util .Set ;
5
+ import java .util .UUID ;
6
+
3
7
import static org .assertj .core .api .Assertions .assertThat ;
4
8
import static org .assertj .core .api .Assertions .assertThatExceptionOfType ;
5
9
import static org .junit .jupiter .api .Assertions .assertEquals ;
6
10
import static org .junit .jupiter .api .Assertions .assertThrows ;
7
11
import static org .junit .jupiter .api .Assertions .assertTrue ;
12
+ import org .junit .jupiter .api .BeforeEach ;
13
+ import org .junit .jupiter .api .Test ;
8
14
9
15
import com .codedifferently .lesson17 .bank .exceptions .AccountNotFoundException ;
10
16
import com .codedifferently .lesson17 .bank .exceptions .CheckVoidedException ;
11
- import java .util .Map ;
12
- import java .util .Set ;
13
- import java .util .UUID ;
14
- import org .junit .jupiter .api .BeforeEach ;
15
- import org .junit .jupiter .api .Test ;
16
17
17
18
class BankAtmTest {
18
19
@@ -44,6 +45,7 @@ void setUp() {
44
45
45
46
classUnderTest .addAccount (account1 );
46
47
classUnderTest .addAccount (account2 );
48
+
47
49
}
48
50
49
51
@ Test
You can’t perform that action at this time.
0 commit comments