assertEquals(40, output.responseLength);
}
public void testActiveTract() throws IOException {
Tract tpl = new MapTract("val=${inc.get}, val=${inc.get}");
putAndInit(tpl, "inc", new ValueIncrementer(7));
common.put("template.thing", tpl);
assertEquals("val=7, val=8", request("/thing"));
}