forked from madonawambua/Bank-Account-Draft
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBankTest.java
More file actions
executable file
·51 lines (39 loc) · 789 Bytes
/
BankTest.java
File metadata and controls
executable file
·51 lines (39 loc) · 789 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
package init;
import static org.junit.Assert.*;
import org.junit.Before;
import org.junit.Test;
import Root.Bank;
public class BankTest {
Bank bank;
@Before
public void setUp() throws Exception {
}
@Test
public void testBank() {
//fail("Not yet implemented");
}
@Test
public void testGetNewUserUUID() {
//fail("Not yet implemented");
}
@Test
public void testGetNewAccontUUID() {
//fail("Not yet implemented");
}
@Test
public void testAddAccount() {
//fail("Not yet implemented");
}
@Test
public void testAddUser() {
//fail("Not yet implemented");
}
@Test
public void testUserLogin() {
//fail("Not yet implemented");
}
@Test
public void testGetName() {
//fail("Not yet implemented");
}
}