Clover coverage report - jMock - 1.0-beta1
Coverage timestamp: Sat Nov 29 2003 19:35:59 GMT
file stats: LOC: 14   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
StubBuilder.java - - - -
coverage
 1   
 /* Copyright (c) 2000-2003, jMock.org. See bundled LICENSE.txt */
 2   
 package org.jmock.stub;
 3   
 
 4   
 import org.jmock.dynamic.ExpectationBuilder;
 5   
 
 6   
 public interface StubBuilder {
 7   
     ExpectationBuilder isVoid();
 8   
 
 9   
     ExpectationBuilder returns(Object returnValue);
 10   
 
 11   
     ExpectationBuilder willThrow(Throwable throwable);
 12   
 }
 13   
 
 14