Package se.dannej.fakehttpserver.expect.matcher

Examples of se.dannej.fakehttpserver.expect.matcher.RequestMatcher


  private void allowingRequestMatcherReturns(final boolean returnValue) {
    expectation.addRequestMatcher(requestMatcherReturning(returnValue));
  }
 
  private Matcher<FakeHttpServletRequest> requestMatcherReturning(final boolean returnValue) {
    return new RequestMatcher() {
     
      @Override
      public void describeTo(Description paramDescription) {
        paramDescription.appendText("request matcher returning " + returnValue);
      }
View Full Code Here

TOP

Related Classes of se.dannej.fakehttpserver.expect.matcher.RequestMatcher

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.