Clover coverage report - EasyMock 1.2_Java1.5
Coverage timestamp: So Aug 7 2005 17:48:15 CEST
file stats: LOC: 24   Methods: 0
NCLOC: 11   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
IBehavior.java - - - -
coverage
 1    /*
 2    * Copyright (c) 2001-2005 OFFIS. This program is made available under the terms of
 3    * the MIT License.
 4    */
 5    package org.easymock.internal;
 6   
 7    import java.lang.reflect.Method;
 8   
 9    import org.easymock.ArgumentsMatcher;
 10   
 11    public interface IBehavior {
 12   
 13    void setDefaultMatcher(ArgumentsMatcher defaultMatcher);
 14   
 15    void setMatcher(Method method, ArgumentsMatcher matcher);
 16   
 17    void addExpected(MethodCall methodCall, Result result, Range count);
 18   
 19    void setDefaultResult(Method method, Result result);
 20   
 21    Result addActual(MethodCall methodCall);
 22   
 23    void verify();
 24    }