View Javadoc
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 Success extends TestCase {
9   
10      @Override
11      public void runTest() {
12      }
13  
14      public void testSuccess() {
15      }
16  }