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