Class AbstractExpectationCollection

    • Constructor Detail

      • AbstractExpectationCollection

        public AbstractExpectationCollection​(java.lang.String name)
    • Method Detail

      • addActual

        public void addActual​(int actualItem)
      • addExpected

        public void addExpected​(int expectedItem)
      • checkImmediateValues

        protected abstract void checkImmediateValues​(java.lang.Object actualItem)
      • clearExpectation

        protected void clearExpectation()
      • getActualCollection

        protected abstract java.util.Collection getActualCollection()
      • getExpectedCollection

        protected abstract java.util.Collection getExpectedCollection()
      • 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 interface Expectation
      • 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