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