package nl.ica.ddoa.maven.example; import junit.framework.Test; import junit.framework.TestCase; import junit.framework.TestSuite; /** * Unit test for simple SortClient. */ public class SortClientTest extends TestCase { /** * Create the test case * * @param testName name of the test case */ public SortClientTest(String testName) { super( testName ); } /** * @return the suite of tests being tested */ public static Test suite() { return new TestSuite( SortClientTest.class ); } /** * Rigourous Test :-) */ public void testApp() { assertTrue( true ); } }