Package org.jmock.expectation
Class AbstractExpectation
java.lang.Object
org.jmock.expectation.AbstractExpectation
- All Implemented Interfaces:
Verifiable,Expectation
- Direct Known Subclasses:
AbstractExpectationCollection,ExpectationCounter,ExpectationDoubleValue,ExpectationSegment,ExpectationValue
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected voidassertEquals(String msg, int expectedValue, int actualValue) protected voidassertEquals(String msg, Object expectedValue, Object actualValue) Due to junit Assert being a Singleton implemented with static methods, and java's unfortunate implementation of class methods (e.g.abstract voidbooleanReturn true if any expectations have been set on this object.voidIf an incorrect actual value is set, defer reporting this as a failure until verify() is called on this object.protected voidprotected booleanabstract voidverify()Throw an AssertionFailedException if any expectations have not been met.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.jmock.expectation.Expectation
setExpectNothing
-
Field Details
-
myFailureModeIsImmediate
protected boolean myFailureModeIsImmediate -
myName
-
-
Constructor Details
-
AbstractExpectation
-
-
Method Details
-
assertEquals
-
assertEquals
Due to junit Assert being a Singleton implemented with static methods, and java's unfortunate implementation of class methods (e.g. no late binding) it is necessary to re-implement this invokedMethod here instead of over-riding failNotEquals -
clearActual
public abstract void clearActual() -
hasExpectations
public boolean hasExpectations()Description copied from interface:ExpectationReturn true if any expectations have been set on this object.- Specified by:
hasExpectationsin interfaceExpectation
-
setFailOnVerify
public void setFailOnVerify()Description copied from interface:ExpectationIf an incorrect actual value is set, defer reporting this as a failure until verify() is called on this object.- Specified by:
setFailOnVerifyin interfaceExpectation
-
setHasExpectations
protected void setHasExpectations() -
shouldCheckImmediately
protected boolean shouldCheckImmediately() -
verify
public abstract void verify()Description copied from interface:VerifiableThrow 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:
verifyin interfaceVerifiable
-