Clover coverage report - jMock - 1.0-beta1
Coverage timestamp: Sat Nov 29 2003 19:35:59 GMT
file stats: LOC: 12   Methods: 0
NCLOC: 7   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
InvocationMatcher.java - - - -
coverage
 1   
 /* Copyright (c) 2000-2003, jMock.org. See bundled LICENSE.txt */
 2   
 package org.jmock;
 3   
 
 4   
 import org.jmock.dynamic.Invocation;
 5   
 import org.jmock.expectation.Verifiable;
 6   
 
 7   
 public interface InvocationMatcher extends Verifiable {
 8   
     boolean matches(Invocation invocation);
 9   
 
 10   
     void invoked(Invocation invocation);
 11   
 }
 12