in src/main/java/org/apache/sling/servlethelpers/MockRequestParameter.java [59:66]
public MockRequestParameter(String name, byte[] content, String contentType, String filename) {
this.name = name;
this.value = null;
this.content = content;
this.contentType = contentType;
this.isFormField = false;
this.filename = filename;
}