Package com.mockobjects
Class ExpectationCounter
- java.lang.Object
-
- com.mockobjects.AbstractExpectation
-
- com.mockobjects.ExpectationCounter
-
- All Implemented Interfaces:
Expectation,Verifiable
public class ExpectationCounter extends AbstractExpectation
-
-
Constructor Summary
Constructors Constructor Description ExpectationCounter(java.lang.String name)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclearActual()voidinc()voidsetExpected(int expectedCalls)voidsetExpectNothing()Tell the object to expect nothing to happen to it, perhaps because the test is exercising the handling of an error.voidverify()Throw an AssertionFailedException if any expectations have not been met.-
Methods inherited from class com.mockobjects.AbstractExpectation
hasExpectations, setFailOnVerify
-
-
-
-
Method Detail
-
clearActual
public void clearActual()
- Specified by:
clearActualin classAbstractExpectation
-
inc
public void inc()
-
setExpected
public void setExpected(int expectedCalls)
-
setExpectNothing
public void setExpectNothing()
Description copied from interface:ExpectationTell 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:VerifiableThrow an AssertionFailedException if any expectations have not been met.- Specified by:
verifyin interfaceVerifiable- Specified by:
verifyin classAbstractExpectation
-
-