org.jmock.expectation

Class ExpectationDoubleValue

Implemented Interfaces:
Expectation, Verifiable

public class ExpectationDoubleValue
extends AbstractExpectation

Field Summary

Fields inherited from class org.jmock.expectation.AbstractExpectation

myFailureModeIsImmediate, myName

Constructor Summary

ExpectationDoubleValue(String name)

Method Summary

void
clearActual()
void
setActual(double value)
void
setExpectNothing()
Tell the object to expect nothing to happen to it, perhaps because the test is exercising the handling of an error.
void
setExpected(double value, double error)
void
verify()

Methods inherited from class org.jmock.expectation.AbstractExpectation

assertEquals, assertEquals, clearActual, hasExpectations, setFailOnVerify, setHasExpectations, shouldCheckImmediately, verify

Constructor Details

ExpectationDoubleValue

public ExpectationDoubleValue(String name)

Method Details

clearActual

public void clearActual()
Overrides:
clearActual in interface AbstractExpectation

setActual

public void setActual(double value)

setExpectNothing

public void setExpectNothing()
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 interface Expectation

setExpected

public void setExpected(double value,
                        double error)

verify

public void verify()
Specified by:
verify in interface Verifiable
Overrides:
verify in interface AbstractExpectation