}
@Test
public void testEchoParam1() {
try {
UrlResponse response = testUtil.doMethod("GET", SOMEPATH + "/shizzy", null);
Assert.assertEquals(200, response.status);
Assert.assertEquals("echo: shizzy", response.body);
} catch (Throwable e) {
throw new RuntimeException(e);
}