3 Replies Latest reply on Jul 30, 2008 1:27 PM by bgregory

    proper organizing of tests

    wgworek

      Hi!

      Does anyone know how to organize test that I would have when invoking ServletTestRunner?suite=my.WebUITestSuite&xsl=cactus-report.xsl

      UserPage:
       * testRendered
       * testNoUsers
      LoginPage
       * testBadCredentials
       * testRememberPassword


      Currently I got:
      public class WebUITestSuite extends ServletTestCase
      {
      
       public static Test suite()
       {
       TestSuite testSuite = new TestSuite();
       testSuite.addTestSuite(UserListTest.class);
       testSuite.addTestSuite(SecurityFilterTest.class);
       return testSuite;
       }
      
      }
      

      and UserListTest and SecurityFilterTest are simple classes that extend ServletTestCase. And after invoking the test URL all methods I can see
      TestCase my.WebUITestSuite
      * testA
      * testB
      * all methods from test are mixed here together
      


      I know that this is connected with JUnit organization but any help will be appriciated :).