| 1 |
|
|
| 2 |
|
|
| 3 |
|
|
| 4 |
|
|
| 5 |
|
package org.easymock.internal; |
| 6 |
|
|
|
|
|
| - |
Uncovered Elements: 0 (0) |
Complexity: 0 |
Complexity Density: - |
|
| 7 |
|
public interface IMocksBehavior extends ILegacyMatcherMethods { |
| 8 |
|
|
| 9 |
|
|
| 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 |
|
|
| 17 |
|
Result addActual(Invocation invocation); |
| 18 |
|
|
| 19 |
|
void makeThreadSafe(boolean isThreadSafe); |
| 20 |
|
|
| 21 |
|
boolean isThreadSafe(); |
| 22 |
|
|
| 23 |
|
void checkCurrentThreadSameAsLastThread(); |
| 24 |
|
|
| 25 |
|
|
| 26 |
|
void verify(); |
| 27 |
|
} |