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