blob: e43e10599b20f9a354d894dae6a4b238a946dcd0 [file] [log] [blame]
package junit.tests;
/**
* Test class used in SuiteTest
*/
import junit.framework.TestCase;
public class NotVoidTestCase extends TestCase {
public NotVoidTestCase(String name) {
super(name);
}
public int testNotVoid() {
return 1;
}
public void testVoid() {
}
}