Package org.jmock.api

Examples of org.jmock.api.ExpectationError


     * Fails the test if there are any expectations that have not been met.
     */
  public void assertIsSatisfied() {
        firstError = null;
        if (!dispatcher.isSatisfied()) {
            throw expectationErrorTranslator.translate(new ExpectationError("not all expectations were satisfied", dispatcher));
        }
  }
View Full Code Here


    private ExpectationError fillInDetails(ExpectationError e) {
        if (e.expectations != null) {
            return e;
        }
        else {
            ExpectationError filledIn = new ExpectationError(e.getMessage(), dispatcher, e.invocation);
            filledIn.setStackTrace(e.getStackTrace());
            return filledIn;
        }
    }
View Full Code Here

     * Fails the test if there are any expectations that have not been met.
     */
  public void assertIsSatisfied() {
        firstError = null;
        if (!dispatcher.isSatisfied()) {
            throw expectationErrorTranslator.translate(new ExpectationError("not all expectations were satisfied", dispatcher));
        }
  }
View Full Code Here

    // The ExpectationError might not have the expectations field set (because of a design
    // flaw that cannot be fixed without breaking backward compatibility of client code).
    // So if it is null we create a new ExpectationError with the field set to the mockery's
    // expectations.
    private ExpectationError fillInDetails(ExpectationError e) {
        ExpectationError filledIn = new ExpectationError(e.getMessage(), this, e.invocation);
        filledIn.setStackTrace(e.getStackTrace());
        return filledIn;
    }
View Full Code Here

        if (expectation.matches(invocation)) {
            return expectation.invoke(invocation);
            }
        }
       
        throw new ExpectationError("unexpected invocation", invocation);
  }
View Full Code Here

   
    public Object invoke(Invocation invocation) throws Throwable {
        if (iterator.hasNext()) {
            return iterator.next().invoke(invocation);
        }
      throw new ExpectationError("no more actions available", invocation);
    }
View Full Code Here

        if (expectation.matches(invocation)) {
            return expectation.invoke(invocation);
            }
        }
       
        throw new ExpectationError("unexpected invocation", this, invocation);
  }
View Full Code Here

     * Fails the test if there are any expectations that have not been met.
     */
  public void assertIsSatisfied() {
        firstError = null;
        if (!dispatcher.isSatisfied()) {
            throw expectationErrorTranslator.translate(new ExpectationError("not all expectations were satisfied", dispatcher));
        }
  }
View Full Code Here

    private ExpectationError fillInDetails(ExpectationError e) {
        if (e.expectations != null) {
            return e;
        }
        else {
            ExpectationError filledIn = new ExpectationError(e.getMessage(), dispatcher, e.invocation);
            filledIn.setStackTrace(e.getStackTrace());
            return filledIn;
        }
    }
View Full Code Here

TOP

Related Classes of org.jmock.api.ExpectationError

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.