Clover Coverage Report - EasyMock 3.0
Coverage timestamp: sam. mai 8 2010 14:37:27 CEST
0   59   0   -
0   21   -   0
0     -  
1    
 
  IMocksControlState       Line # 24 0 - 0 0 - -1.0
 
No Tests
 
1    /**
2    * Copyright 2001-2010 the original author or authors.
3    *
4    * Licensed under the Apache License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    * http://www.apache.org/licenses/LICENSE-2.0
9    *
10    * Unless required by applicable law or agreed to in writing, software
11    * distributed under the License is distributed on an "AS IS" BASIS,
12    * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13    * See the License for the specific language governing permissions and
14    * limitations under the License.
15    */
16   
17    package org.easymock.internal;
18   
19    import org.easymock.IAnswer;
20   
21    /**
22    * @author OFFIS, Tammo Freese
23    */
 
24    public interface IMocksControlState {
25   
26    Object invoke(Invocation invocation) throws Throwable;
27   
28    void assertRecordState();
29   
30    void andReturn(Object value);
31   
32    void andThrow(Throwable throwable);
33   
34    void andAnswer(IAnswer<?> answer);
35   
36    void andDelegateTo(Object answer);
37   
38    void andStubReturn(Object value);
39   
40    void andStubThrow(Throwable throwable);
41   
42    void andStubAnswer(IAnswer<?> answer);
43   
44    void andStubDelegateTo(Object delegateTo);
45   
46    void asStub();
47   
48    void times(Range range);
49   
50    void checkOrder(boolean value);
51   
52    void makeThreadSafe(boolean threadSafe);
53   
54    void checkIsUsedInOneThread(boolean shouldBeUsedInOneThread);
55   
56    void replay();
57   
58    void verify();
59    }