Clover coverage report - EasyMock 2.2
Coverage timestamp: Mo Apr 17 2006 21:21:22 CEST
file stats: LOC: 36   Methods: 0
NCLOC: 17   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
IMocksControlState.java - - - -
coverage
 1    /*
 2    * Copyright (c) 2001-2006 OFFIS, Tammo Freese.
 3    * This program is made available under the terms of the MIT License.
 4    */
 5    package org.easymock.internal;
 6   
 7    import org.easymock.IAnswer;
 8   
 9    public interface IMocksControlState extends ILegacyMethods {
 10   
 11    Object invoke(Invocation invocation) throws Throwable;
 12   
 13    void assertRecordState();
 14   
 15    void andReturn(Object value);
 16   
 17    void andThrow(Throwable throwable);
 18   
 19    void andAnswer(IAnswer answer);
 20   
 21    void andStubReturn(Object value);
 22   
 23    void andStubThrow(Throwable throwable);
 24   
 25    void andStubAnswer(IAnswer answer);
 26   
 27    void asStub();
 28   
 29    void times(Range range);
 30   
 31    void checkOrder(boolean value);
 32   
 33    void replay();
 34   
 35    void verify();
 36    }