1   package org.apache.geronimo.ews;
2   
3   import junit.framework.Test;
4   import junit.framework.TestSuite;
5   
6   /***
7    * Unit test for simple App.
8    *
9    * @author <a href="mailto:jason@zenplex.com">Jason van Zyl</a>
10   */
11  public class NaughtyTest
12      extends AbstractTestCase
13  {
14      /***
15       * Create the test case
16       *
17       * @param testName name of the test case
18       */
19      public NaughtyTest( String testName )
20      {
21          super( testName );
22      }
23  
24      /***
25       * @return the suite of tests being tested
26       */
27      public static Test suite()
28      {
29          return new TestSuite( NaughtyTest.class );
30      }
31  
32      /***
33       * Rigourous Test :-)
34       */
35      public void testApp()
36      {
37          // Crash and burn!
38      }
39  }