Package com.britesnow.snow.testsupport.mock

Examples of com.britesnow.snow.testsupport.mock.RequestContextMock


   * @param uri
   * @param params
   * @return
   */
  public RequestContextMock doHttp(RequestContextMockFactory.RequestMethod requestMethod, String uri, Map params, Map cookies){
    RequestContextMock rc = requestContextFactory.createRequestContext(requestMethod, uri);
    rc.setParamMap(params);
    rc.setCookieMap(cookies);
    webController.service(rc);
    return rc;
  }
View Full Code Here

TOP

Related Classes of com.britesnow.snow.testsupport.mock.RequestContextMock

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.