blob: 510468fce2b18129519d1c80e73936f6b7eb0d62 [file] [log] [blame]
package junit.tests.framework;
import junit.framework.TestCase;
/**
* A test case testing the testing framework.
*/
public class Success extends TestCase {
@Override
public void runTest() {
}
public void testSuccess() {
}
}