}
@Test
public void testPatch() {
try {
UrlResponse response = testUtil.doMethodSecure("PATCH", "/patcher",
"Fo shizzy");
LOGGER.info(response.body);
Assert.assertEquals(200, response.status);
Assert.assertTrue(response.body.contains("Fo shizzy"));
} catch (Throwable e) {