Package org.springframework.test.web.servlet

Examples of org.springframework.test.web.servlet.RequestBuilder


   *   .andExpect(content().string("{\"name\":\"Joe\",\"someDouble\":0.0,\"someBoolean\":false}"));
   * </pre>
   * @param mvcResult the result from the request that started async processing
   */
  public static RequestBuilder asyncDispatch(final MvcResult mvcResult) {
    return new RequestBuilder() {
      @Override
      public MockHttpServletRequest buildRequest(ServletContext servletContext) {
        MockHttpServletRequest request = mvcResult.getRequest();
        request.setAsyncStarted(false);
        return request;
View Full Code Here

TOP

Related Classes of org.springframework.test.web.servlet.RequestBuilder

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.