Clover coverage report - Cactus 1.4 for J2EE API 12
Coverage timestamp: Sun Aug 25 2002 18:00:03 BST
file stats: LOC: 34   Methods: 2
NCLOC: 8   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
ServletTestController.java - 100% 100% 100%
 1   
 /*   Generated by AspectJ version 1.0.5 */
 2   
 package org.apache.cactus.server;
 3   
 /** 
 4   
  * Servlet Controller that extracts the requested service from the 
 5   
  * HTTP request and executes the request by calling a 
 6   
  * <code>ServletTestCaller</code>. There are 2 services available : one for 
 7   
  * executing the test and one for returning the test result. 
 8   
  * 
 9   
  * @author <a href="mailto:vmassol@apache.org">Vincent Massol</a> 
 10   
  * 
 11   
  * @version $Id: ServletTestController.java,v 1.2 2002/05/06 17:38:23 vmassol Exp $ 
 12   
  */
 13   
 public class ServletTestController extends AbstractWebTestController {
 14   
   /** 
 15   
        * @see AbstractWebTestController#getTestCaller(WebImplicitObjects) 
 16   
        */
 17  325
   protected AbstractWebTestCaller getTestCaller(WebImplicitObjects theObjects) {
 18  325
     return new ServletTestCaller((ServletImplicitObjects)theObjects);
 19   
   } 
 20   
 
 21   
   /** 
 22   
    * Servlet Controller that extracts the requested service from the 
 23   
    * HTTP request and executes the request by calling a 
 24   
    * <code>ServletTestCaller</code>. There are 2 services available : one for 
 25   
    * executing the test and one for returning the test result. 
 26   
    * 
 27   
    * @author <a href="mailto:vmassol@apache.org">Vincent Massol</a> 
 28   
    * 
 29   
    * @version $Id: ServletTestController.java,v 1.2 2002/05/06 17:38:23 vmassol Exp $ 
 30   
    */
 31  325
   public ServletTestController() {
 32  325
     super();
 33   
   } 
 34   
 }