Clover coverage report - jMock - 1.0-beta1
Coverage timestamp: Sat Nov 29 2003 19:35:59 GMT
file stats: LOC: 15   Methods: 0
NCLOC: 8   Classes: 1
30 day Evaluation Version distributed via the Maven Jar Repository. 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
DynamicMock.java - - - -
coverage
 1   
 /* Copyright (c) 2000-2003, jMock.org. See bundled LICENSE.txt */
 2   
 package org.jmock.dynamic;
 3   
 
 4   
 import org.jmock.expectation.Verifiable;
 5   
 
 6   
 import java.lang.reflect.InvocationHandler;
 7   
 
 8   
 public interface DynamicMock
 9   
         extends Verifiable, InvocationHandler {
 10   
     void add(Invokable invokable);
 11   
 
 12   
     Object proxy();
 13   
 
 14   
     void reset();
 15   
 }