Package org.deftserver.web.http

Examples of org.deftserver.web.http.HttpRequest


  }
 
  @Test
  public void testHttpRequestNullQueryString() {
    String requestLine = "GET /foobar? HTTP/1.1 ";
    HttpRequest request = new HttpRequest(requestLine, new HashMap<String, String>());
    Assert.assertEquals("/foobar", request.getRequestedPath());
  }
View Full Code Here


  }
 
  @Test
  public void testHttpRequestNullQueryStringTrailingSlash() {
    String requestLine = "GET /foobar/? HTTP/1.1 ";
    HttpRequest request = new HttpRequest(requestLine, new HashMap<String, String>());
    Assert.assertEquals("/foobar/", request.getRequestedPath());
  }
View Full Code Here

TOP

Related Classes of org.deftserver.web.http.HttpRequest

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.