AppTest.java 622 B

1234567891011121314151617181920212223242526272829303132333435
  1. package com.java110;
  2. import junit.framework.Test;
  3. import junit.framework.TestCase;
  4. import junit.framework.TestSuite;
  5. /**
  6. * Unit test for simple App.
  7. */
  8. public class AppTest
  9. extends TestCase {
  10. /**
  11. * Create the test case
  12. *
  13. * @param testName name of the test case
  14. */
  15. public AppTest(String testName) {
  16. super(testName);
  17. }
  18. /**
  19. * @return the suite of tests being tested
  20. */
  21. public static Test suite() {
  22. return new TestSuite(AppTest.class);
  23. }
  24. /**
  25. * Rigourous Test :-)
  26. */
  27. public void testApp() {
  28. assertTrue(true);
  29. }
  30. }