STGroup group = new STGroup();
group.defineTemplate("test", "m", "<if(m.foo)>[<m.foo>]<endif>");
ST t = group.getInstanceOf("test");
t.add("m", new HashMap<Object, Object>());
String expecting="";
String result = t.render();
assertEquals(expecting, result);
}
@Test public void testMissingDictionaryValue3() throws Exception {
STGroup group = new STGroup();