Package se.dannej.fakehttpserver.expect

Examples of se.dannej.fakehttpserver.expect.ResponseAction


    caller.resource().path(UNEXPECTED_PATH).post();
  }


  private ResponseAction throwException() {
    return new ResponseAction() {
      @Override
      public void applyTo(FakeHttpServletRequest request, FakeHttpServletResponse response) {
        throw new RuntimeException();
      }
    };
View Full Code Here

TOP

Related Classes of se.dannej.fakehttpserver.expect.ResponseAction

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.