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