Package org.jmock.expectation
Class ExpectationCounter
- java.lang.Object
-
- org.jmock.expectation.AbstractExpectation
-
- org.jmock.expectation.ExpectationCounter
-
- All Implemented Interfaces:
Verifiable
,Expectation
public class ExpectationCounter extends AbstractExpectation
-
-
Field Summary
-
Fields inherited from class org.jmock.expectation.AbstractExpectation
myFailureModeIsImmediate, myName
-
-
Constructor Summary
Constructors Constructor Description ExpectationCounter(java.lang.String name)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
clearActual()
void
inc()
void
setExpected(int expectedCalls)
void
setExpectNothing()
Tell the object to expect nothing to happen to it, perhaps because the test is exercising the handling of an error.void
verify()
Throw an AssertionFailedException if any expectations have not been met.-
Methods inherited from class org.jmock.expectation.AbstractExpectation
assertEquals, assertEquals, hasExpectations, setFailOnVerify, setHasExpectations, shouldCheckImmediately
-
-
-
-
Method Detail
-
clearActual
public void clearActual()
- Specified by:
clearActual
in classAbstractExpectation
-
inc
public void inc()
-
setExpected
public void setExpected(int expectedCalls)
-
setExpectNothing
public void setExpectNothing()
Description copied from interface:Expectation
Tell the object to expect nothing to happen to it, perhaps because the test is exercising the handling of an error. The Expectation will fail if any actual values are set. Note that this is not the same as not setting any expectations, in which case verify() will do nothing.
-
verify
public void verify()
Description copied from interface:Verifiable
Throw an AssertionFailedException if any expectations have not been met. Implementations of this method must be idempotent: jMock can call this method more than once when verifying expectations at the end of a test.- Specified by:
verify
in interfaceVerifiable
- Specified by:
verify
in classAbstractExpectation
-
-