| 1 |
|
|
| 2 |
|
|
| 3 |
|
|
| 4 |
|
|
| 5 |
|
package org.easymock.internal; |
| 6 |
|
|
| 7 |
|
import org.easymock.IAnswer; |
| 8 |
|
|
|
|
|
| - |
Uncovered Elements: 0 (0) |
Complexity: 0 |
Complexity Density: - |
|
| 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 |
|
} |