create a simple checkbook class that adheres to java Collections interface.

CheckbookTest.java 211B

123456789101112
  1. import static org.junit.Assert.*;
  2. public class CheckbookTest {
  3. @org.junit.Before
  4. public void setUp() throws Exception {
  5. }
  6. @org.junit.After
  7. public void tearDown() throws Exception {
  8. }
  9. }