assertEquals("I am aa: ${*hello}", tpls.getObject("home"));
assertEquals("Hello, ${value}!", tpls.getObject("hello"));
}
private void check(LocalServer server, String expected, String page) {
ByteTract request = new LocalRequest(page);
Tract response = server.request(request);
assertTrue(response.hasContent());
assertEquals(expected, response.getContent());
}