Class ExpectationSegment

java.lang.Object
com.mockobjects.AbstractExpectation
com.mockobjects.ExpectationSegment
All Implemented Interfaces:
Expectation, Verifiable

public class ExpectationSegment extends AbstractExpectation
  • Constructor Details

    • ExpectationSegment

      public ExpectationSegment(String name)
  • Method Details

    • clearActual

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

      public void setActual(String aString)
    • setExpected

      public void setExpected(String segment)
    • 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.
      Specified by:
      verify in interface Verifiable
      Specified by:
      verify in class AbstractExpectation