vmassol     2003/02/23 10:34:09

  Modified:    framework/src/java/share/org/apache/cactus
                        AbstractTestSuite.java
  Log:
  Added missing comments
  
  Revision  Changes    Path
  1.2       +13 -1     
jakarta-cactus/framework/src/java/share/org/apache/cactus/AbstractTestSuite.java
  
  Index: AbstractTestSuite.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-cactus/framework/src/java/share/org/apache/cactus/AbstractTestSuite.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- AbstractTestSuite.java    23 Feb 2003 18:05:19 -0000      1.1
  +++ AbstractTestSuite.java    23 Feb 2003 18:34:08 -0000      1.2
  @@ -350,7 +350,19 @@
           };
       }
   
  +    /**
  +     * @param theTestClass the test class containing the tests to be included
  +     *        in the Cactus Test Suite
  +     * @return a Cactus Test Suite (ex: ServletTestSuite) initialized with a
  +     *         test class
  +     */
       protected abstract Test createTestSuite(Class theTestClass);
   
  +    /**
  +     * @param theName the name of the Cactus Test Case
  +     * @param theTest the wrapped test
  +     * @return a Cactus Test Case object initialized with the give name and
  +     *         wrapped test
  +     */
       protected abstract Test createCactusTestCase(String theName, Test theTest);
   }
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to