// ---------------------------------------------------------------- raw
@Test
public void testRawResult() {
HttpResponse httpResponse = HttpRequest.get("localhost:8173/madvocRawImage").send();
assertEquals(200, httpResponse.statusCode());
assertEquals("image/gif", httpResponse.contentType());
byte[] bytes = httpResponse.bodyBytes();
assertArrayEquals(RawResultAction.SMALLEST_GIF, bytes);
}