Package com.mockobjects
Class AbstractExpectationCollection
java.lang.Object
com.mockobjects.AbstractExpectation
com.mockobjects.AbstractExpectationCollection
- All Implemented Interfaces:
Expectation
,ExpectationCollection
,Verifiable
- Direct Known Subclasses:
ExpectationList
,ExpectationSet
public abstract class AbstractExpectationCollection
extends AbstractExpectation
implements ExpectationCollection
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
addActual
(int actualItem) void
void
addActualMany
(Object[] items) void
addActualMany
(Enumeration items) void
addActualMany
(Iterator items) void
addExpected
(int expectedItem) void
addExpected
(Object expectedItem) void
addExpectedMany
(Object[] expectedItems) void
addExpectedMany
(Enumeration expectedItems) void
addExpectedMany
(Iterator expectedItems) void
void
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 com.mockobjects.AbstractExpectation
hasExpectations, setFailOnVerify
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface com.mockobjects.Expectation
hasExpectations, setFailOnVerify
-
Constructor Details
-
AbstractExpectationCollection
-
-
Method Details
-
addActual
- Specified by:
addActual
in interfaceExpectationCollection
-
addActual
public void addActual(int actualItem) -
addActualMany
- Specified by:
addActualMany
in interfaceExpectationCollection
-
addActualMany
- Specified by:
addActualMany
in interfaceExpectationCollection
-
addActualMany
- Specified by:
addActualMany
in interfaceExpectationCollection
-
addExpected
public void addExpected(int expectedItem) -
addExpected
- Specified by:
addExpected
in interfaceExpectationCollection
-
addExpectedMany
- Specified by:
addExpectedMany
in interfaceExpectationCollection
-
addExpectedMany
- Specified by:
addExpectedMany
in interfaceExpectationCollection
-
addExpectedMany
- Specified by:
addExpectedMany
in interfaceExpectationCollection
-
clearActual
public void clearActual()- Specified by:
clearActual
in classAbstractExpectation
-
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.- Specified by:
setExpectNothing
in interfaceExpectation
-
verify
public void verify()Description copied from interface:Verifiable
Throw an AssertionFailedException if any expectations have not been met.- Specified by:
verify
in interfaceVerifiable
- Specified by:
verify
in classAbstractExpectation
-