My controller method is something like this
public static void addItem(byte[] xmlFile) {
... //process file
}
and my ApplicationTest file
@Test
public void addItem() {
Request request = newRequest();
request.url = "/item";
request.encoding = APPLICATION_X_WWW_FORM_URLENCODED;
request.body = new ByteArrayInputStream(xmlFileBytes)
Response response = POST(request, "/item")
.....
}
When i run this i get exceptions .. with root cause unsupported encoding: application/x-www-form-urlencoded
How does one resolve this...