|
|||||||||||||||||||
30 day Evaluation Version distributed via the Maven Jar Repository. Clover is not free. You have 30 days to evaluate it. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover | |||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
DynamicMock.java | - | - | - | - |
|
1 |
/* Copyright (c) 2000-2003, jMock.org. See bundled LICENSE.txt */
|
|
2 |
package org.jmock.dynamic;
|
|
3 |
|
|
4 |
import org.jmock.expectation.Verifiable;
|
|
5 |
|
|
6 |
import java.lang.reflect.InvocationHandler;
|
|
7 |
|
|
8 |
public interface DynamicMock |
|
9 |
extends Verifiable, InvocationHandler {
|
|
10 |
void add(Invokable invokable);
|
|
11 |
|
|
12 |
Object proxy(); |
|
13 |
|
|
14 |
void reset();
|
|
15 |
} |
|