blob: b54b7f57fe3b0a3eb4f8c5d9bd7cf57959a35b1a [file] [log] [blame]
package junit.tests.framework;
import junit.framework.TestCase;
/**
* Test class used in SuiteTest
*/
public class OneTestCase extends TestCase {
public void noTestCase() {
}
public void testCase() {
}
public void testCase(int arg) {
}
}