Package com.mockobjects
Class ExpectationValue
java.lang.Object
com.mockobjects.AbstractExpectation
com.mockobjects.ExpectationValue
- All Implemented Interfaces:
Expectation,Verifiable
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidvoidsetActual(boolean aValue) voidsetActual(double aValue) voidsetActual(int aValue) voidsetActual(long aValue) voidvoidsetExpected(boolean aValue) voidsetExpected(double aValue) voidsetExpected(int aValue) voidsetExpected(long aValue) voidsetExpected(Object aValue) voidTell 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
-
Constructor Details
-
ExpectationValue
-
-
Method Details
-
clearActual
public void clearActual()- Specified by:
clearActualin classAbstractExpectation
-
setActual
public void setActual(int aValue) -
setActual
public void setActual(long aValue) -
setActual
public void setActual(double aValue) -
setActual
-
setActual
public void setActual(boolean aValue) -
setExpected
public void setExpected(int aValue) -
setExpected
public void setExpected(long aValue) -
setExpected
public void setExpected(double aValue) -
setExpected
-
setExpected
public void setExpected(boolean aValue) -
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
-