|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
An Expectation is an object that we set up at the beginning of a unit test to expect certain things to happen to it. If it is possible to tell, the Expectation will fail as soon as an incorrect value has been set. Call verify() at the end of a unit test to check for missing or incomplete values. If no expectations have been set on the object, then no checking will be done and verify() will do nothing.
Method Summary | |
boolean |
hasExpectations()
Return true if any expectations have been set on this object. |
void |
setExpectNothing()
Tell the object to expect nothing to happen to it, perhaps because the test is exercising the handling of an error. |
void |
setFailOnVerify()
If an incorrect actual value is set, defer reporting this as a failure until verify() is called on this object. |
Methods inherited from interface com.mockobjects.Verifiable |
verify |
Method Detail |
public boolean hasExpectations()
public void setExpectNothing()
public void setFailOnVerify()
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |