1 package junit.tests.framework; 2 3 import junit.framework.TestCase; 4 5 /** 6 * A test case testing the testing framework. 7 */ 8 public class Failure extends TestCase { 9 @Override 10 public void runTest() { 11 fail(); 12 } 13 }