Build a simple PhoneBook program.

PhoneBookTest.java 288B

12345678910111213141516171819
  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. * Sets up the test fixture.
  9. *
  10. * Called before every test case method.
  11. */
  12. @Before
  13. public void setUp(){
  14. }
  15. }