Clover Coverage Report - EasyMock 2.4
Coverage timestamp: mer. juil. 2 2008 02:17:38 CEST
0   27   0   -
0   11   -   0
0     -  
1    
 
 
  IMocksBehavior       Line # 7 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    public interface IMocksBehavior extends ILegacyMatcherMethods {
8   
9    // record
10    void addExpected(ExpectedInvocation expected, Result result, Range count);
11   
12    void addStub(ExpectedInvocation expected, Result result);
13   
14    void checkOrder(boolean value);
15   
16    // replay
17    Result addActual(Invocation invocation);
18   
19    void makeThreadSafe(boolean isThreadSafe);
20   
21    boolean isThreadSafe();
22   
23    void checkCurrentThreadSameAsLastThread();
24   
25    // verify
26    void verify();
27    }