blob: 695f0b8c52246d911cf42760e2df9fd4ab65f8b3 [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);
}
}