Clover coverage report - Cactus 1.4b1 for J2EE API 13
Coverage timestamp: Mon Jul 29 2002 00:34:41 BST
file stats: LOC: 34   Methods: 2
NCLOC: 8   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
ServletTestController.java - 0% 0% 0%
 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  0
   protected AbstractWebTestCaller getTestCaller(WebImplicitObjects theObjects) {
 18  0
     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  0
   public ServletTestController() {
 32  0
     super();
 33   
   } 
 34   
 }