MainTest.java 797B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. import static org.junit.Assert.*;
  2. import org.junit.After;
  3. import org.junit.Before;
  4. import org.junit.Test;
  5. /**
  6. * The test class MainTest.
  7. *
  8. * @author (your name)
  9. * @version (a version number or a date)
  10. */
  11. public class MainTest
  12. {
  13. private Main main1;
  14. private Main main2;
  15. /**
  16. * Default constructor for test class MainTest
  17. */
  18. public MainTest()
  19. {
  20. }
  21. /**
  22. * Sets up the test fixture.
  23. *
  24. * Called before every test case method.
  25. */
  26. @Before
  27. public void setUp()
  28. {
  29. main1 = new Main();
  30. main2 = new Main();
  31. }
  32. /**
  33. * Tears down the test fixture.
  34. *
  35. * Called after every test case method.
  36. */
  37. @After
  38. public void tearDown()
  39. {
  40. }
  41. @Test
  42. public void test1()
  43. {
  44. }
  45. }