|
|||||||||||||||||||
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 | |||||||||||||||
StatelessInvocationMatcher.java | - | - | 100% | 100% |
|
1 |
/* Copyright (c) 2000-2003, jMock.org. See bundled LICENSE.txt */
|
|
2 |
package org.jmock.matcher;
|
|
3 |
|
|
4 |
import org.jmock.InvocationMatcher;
|
|
5 |
import org.jmock.dynamic.Invocation;
|
|
6 |
|
|
7 |
public abstract class StatelessInvocationMatcher implements InvocationMatcher { |
|
8 | 36 |
public void invoked(Invocation invocation) { |
9 |
// Do nothing because state cannot change
|
|
10 |
} |
|
11 |
|
|
12 | 36 |
public void verify() { |
13 |
// Nothing to verify because state cannot change
|
|
14 |
} |
|
15 |
} |
|