forked from madonawambua/Bank-Account-Draft
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTransactionTest.java
More file actions
executable file
·35 lines (27 loc) · 606 Bytes
/
TransactionTest.java
File metadata and controls
executable file
·35 lines (27 loc) · 606 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
package init;
import static org.junit.Assert.*;
import org.junit.Before;
import org.junit.Test;
import Root.Transaction;
public class TransactionTest {
Transaction trans;
@Before
public void setUp() throws Exception {
}
@Test
public void testTransactionDoubleAccount() {
//fail("Not yet implemented");
}
@Test
public void testTransactionDoubleStringAccount() {
//fail("Not yet implemented");
}
@Test
public void testGetAmount() {
//fail("Not yet implemented");
}
@Test
public void testGetSummaryLine() {
//fail("Not yet implemented");
}
}