blob: 0b02828cc06929e2b8356bb10753360efebb6d44 [file] [log] [blame]
package test;
import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;
/**
* Unit test for simple App2.
*/
public class App2Test
extends TestCase
{
/**
* Create the test case
*
* @param testName name of the test case
*/
public App2Test( String testName )
{
super( testName );
}
/**
* @return the suite of tests being tested
*/
public static Test suite()
{
return new TestSuite( App2Test.class );
}
/**
* Rigourous Test :-)
*/
public void testApp2()
{
assertTrue( true );
}
}