org.jmock.expectation
Class ExpectationValue

java.lang.Object
  extended by org.jmock.expectation.AbstractExpectation
      extended by org.jmock.expectation.ExpectationValue
All Implemented Interfaces:
Verifiable, Expectation

public class ExpectationValue
extends AbstractExpectation


Field Summary
 
Fields inherited from class org.jmock.expectation.AbstractExpectation
myFailureModeIsImmediate, myName
 
Constructor Summary
ExpectationValue(String name)
           
 
Method Summary
 void clearActual()
           
 void setActual(boolean aValue)
           
 void setActual(double aValue)
           
 void setActual(int aValue)
           
 void setActual(long aValue)
           
 void setActual(Object aValue)
           
 void setExpected(boolean aValue)
           
 void setExpected(double aValue)
           
 void setExpected(int aValue)
           
 void setExpected(long aValue)
           
 void setExpected(Object aValue)
           
 void setExpectNothing()
          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 org.jmock.expectation.AbstractExpectation
assertEquals, assertEquals, hasExpectations, setFailOnVerify, setHasExpectations, shouldCheckImmediately
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ExpectationValue

public ExpectationValue(String name)
Method Detail

clearActual

public void clearActual()
Specified by:
clearActual in class AbstractExpectation

setActual

public void setActual(int aValue)

setActual

public void setActual(long aValue)

setActual

public void setActual(double aValue)

setActual

public void setActual(Object aValue)

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

public void setExpected(Object aValue)

setExpected

public void setExpected(boolean aValue)

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.


verify

public void verify()
Description copied from interface: Verifiable
Throw 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:
verify in interface Verifiable
Specified by:
verify in class AbstractExpectation