in src/main/java/org/apache/sling/commons/testing/sling/MockSlingHttpServletRequest.java [92:106]
public MockSlingHttpServletRequest(String resourcePath, String selectors,
String extension, String suffix, String queryString,
String requestPath, String scheme, String server, int port,
String contextPath) {
this.resource = new SyntheticResource(null, resourcePath, RESOURCE_TYPE);
this.requestPathInfo = new MockRequestPathInfo(selectors, extension,
suffix, requestPath);
this.queryString = queryString;
this.scheme = scheme;
this.server = server;
this.port = port;
this.contextPath = contextPath;
setMethod(null);
}