Clover coverage report - angkor - 0.4
Coverage timestamp: ti okt 15 2002 22:32:48 CEST
file stats: LOC: 30   Methods: 1
NCLOC: 13   Classes: 1
Clover is not free. You have 30 days to evaluate it. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover.
 
 Source file Conditionals Statements Methods TOTAL
MockApplication.java - 100% 100% 100%
 1   
 /*
 2   
  * Distributable under LGPL license.
 3   
  * See terms of license at gnu.org.
 4   
  * 
 5   
  * (c) Copyright 2002 Jon Tirsén.
 6   
  */
 7   
 package com.tirsen.angkor.test.unit;
 8   
 
 9   
 import org.apache.commons.logging.Log;
 10   
 import org.apache.commons.logging.LogFactory;
 11   
 import com.tirsen.angkor.Application;
 12   
 import com.tirsen.angkor.process.Pipeline;
 13   
 
 14   
 /**
 15   
  * TODO document MockApplication.
 16   
  *
 17   
  * User: Jon Tirsén
 18   
  * Date: 2002-okt-05
 19   
  * Time: 20:26:35
 20   
  */
 21   
 public class MockApplication extends Application
 22   
 {
 23   
     private static final Log logger = LogFactory.getLog(MockApplication.class);
 24   
 
 25  8
     protected Pipeline createDefaultPipeline()
 26   
     {
 27  8
         return new MockPipeline();
 28   
     }
 29   
 }
 30