blob: 60debf518c02fdf1d9d399b47ad2024ecaeca3dc [file] [log] [blame]
import junit.framework.TestCase;
/**
* An example text class to verify the configuration.
*/
public class HelloTest extends TestCase {
/**
* An example test that asserts true.
*
* @throws Exception On invalid assertions
*/
public void testHelloAction() throws Exception {
assertTrue(true);
}
}