Build a simple PhoneBook program.

PhoneBookTest.java 554B

123456789101112131415161718192021222324252627282930313233343536
  1. import static org.junit.Assert.*;
  2. import org.junit.After;
  3. import org.junit.Before;
  4. import org.junit.Test;
  5. public class PhoneBookTest
  6. {
  7. /**
  8. * Default constructor for test class PhoneBookTest
  9. */
  10. public PhoneBookTest()
  11. {
  12. }
  13. /**
  14. * Sets up the test fixture.
  15. *
  16. * Called before every test case method.
  17. */
  18. @Before
  19. public void setUp()
  20. {
  21. }
  22. /**
  23. * Tears down the test fixture.
  24. *
  25. * Called after every test case method.
  26. */
  27. @After
  28. public void tearDown()
  29. {
  30. }
  31. }