Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: info/crossbar/AppTest.java


1   package info.crossbar;
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   * @author <a href="mailto:jason@zenplex.com">Jason van Zyl</a>
11   */
12  public class AppTest 
13      extends AbstractTestCase
14  {
15      /**
16       * Create the test case
17       *
18       * @param testName name of the test case
19       */
20      public AppTest( String testName )
21      {
22          super( testName );
23      }
24  
25      /**
26       * @return the suite of tests being tested
27       */
28      public static Test suite()
29      {
30          return new TestSuite( AppTest.class );
31      }
32  
33      /**
34       * Rigourous Test :-)
35       */
36      public void testApp()
37      {
38          assertEquals( "maven kicks ass", "maven kicks ass" );
39      }
40  }