Clover Coverage Report - EasyMock 2.4
Coverage timestamp: mer. juil. 2 2008 02:17:38 CEST
0   38   0   -
0   18   -   0
0     -  
1    
 
 
  IMocksControlState       Line # 9 0 0 - -1.0
 
No Tests
 
1    /*
2    * Copyright (c) 2001-2008 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 makeThreadSafe(boolean threadSafe);
34   
35    void replay();
36   
37    void verify();
38    }