/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
- package org.ala.gazetteer;
- import junit.framework.Test;
- import junit.framework.TestCase;
- import junit.framework.TestSuite;
- /**
- * Unit test for simple App.
- */
- public class AppTest
- extends TestCase
- {
- /**
- * Create the test case
- *
- * @param testName name of the test case
- */
- public AppTest( String testName )
- {
- super( testName );
- }
- /**
- * @return the suite of tests being tested
- */
- public static Test suite()
- {
- return new TestSuite( AppTest.class );
- }
- /**
- * Rigourous Test :-)
- */
- public void testApp()
- {
- assertTrue( true );
- }
- }