View Javadoc

1   package cs.pancava.caltha;
2   
3   import junit.framework.Test;
4   import junit.framework.TestCase;
5   import junit.framework.TestSuite;
6   
7   /**
8    * Unit test for simple App.
9    */
10  public class EditorTest extends TestCase
11  {
12      /**
13       * Create the test case
14       *
15       * @param testName name of the test case
16       */
17      public EditorTest(String testName)
18      {
19          super(testName);
20      }
21  
22      /**
23       * @return the suite of tests being tested
24       */
25      public static Test suite()
26      {
27          return new TestSuite(EditorTest.class);
28      }
29  
30      /**
31       * Rigourous Test :-)
32       */
33      public void testEditor()
34      {
35          assertTrue(true);
36      }
37  }