blob: 559dcce7272076c5eb91afc5f5f359f8e10469f2 [file] [log] [blame]
public class <warning descr="JUnit test case 'TestCaseWithNoTestMethods' has no tests">TestCaseWithNoTestMethods</warning> extends junit.framework.TestCase {
TestCaseWithNoTestMethods() {}
public int testOne() {
return 1;
}
public static void testTwo() {}
void testThree() {}
public void testFour(int i) {}
public void setUp() throws Exception {
super.setUp();
}
public void tearDown() throws Exception {
super.tearDown();
}
}