* The <tt>Content-Type</tt> header of the request is set to <tt>application/octet-stream</tt>.
* @param data the Binary Data
* @return the Fake Request
*/
public FakeRequest withRawBody(byte[] data) {
return withAnyContent(new AnyContentAsRaw(new RawBuffer(data.length, data)), "application/octet-stream", this.fake.getMethod());
}