MainAplicationTest.java 491B

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