|
|||||||||||||||||||
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 | |||||||||||||||
DynamicMockError.java | - | 100% | 100% | 100% |
|
1 |
/* Copyright (c) 2000-2003, jMock.org. See bundled LICENSE.txt */
|
|
2 |
package org.jmock.dynamic;
|
|
3 |
|
|
4 |
import junit.framework.AssertionFailedError;
|
|
5 |
|
|
6 |
public class DynamicMockError extends AssertionFailedError { |
|
7 |
|
|
8 |
public final Invocation invocation;
|
|
9 |
|
|
10 | 42 |
public DynamicMockError(Invocation invocation, String message) {
|
11 | 42 |
super(message);
|
12 | 42 |
this.invocation = invocation;
|
13 |
} |
|
14 |
} |
|
15 |
|
|