@Test
public void testGetMultiple() throws ExecutionException, InterruptedException {
ApplicationHandler handler = getApplication();
ContainerResponse response = handler.apply(RequestContextBuilder.from("/resource", "GET").build()).get();
assertEquals(200, response.getStatus());
assertEquals("get", response.getEntity());
assertResponseHeaders(response, "MyResource", "get");
response = handler.apply(RequestContextBuilder.from("/resource/get-child", "GET").build()).get();
assertEquals(200, response.getStatus());
assertEquals("get-child", response.getEntity());
assertResponseHeaders(response, "MyResource", "getChild");
}