/gazetteer-demo/src/test/java/org/ala/gazetteer/AppTest.java

http://alageospatialportal.googlecode.com/ · Java · 38 lines · 20 code · 4 blank · 14 comment · 0 complexity · 4e1cbfc92b3587e2aaf7b0b62d3d6239 MD5 · raw file

  1. package org.ala.gazetteer;
  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. /**
  12. * Create the test case
  13. *
  14. * @param testName name of the test case
  15. */
  16. public AppTest( String testName )
  17. {
  18. super( testName );
  19. }
  20. /**
  21. * @return the suite of tests being tested
  22. */
  23. public static Test suite()
  24. {
  25. return new TestSuite( AppTest.class );
  26. }
  27. /**
  28. * Rigourous Test :-)
  29. */
  30. public void testApp()
  31. {
  32. assertTrue( true );
  33. }
  34. }