ST st = group.getInstanceOf("test");
st.add("name", null); // null is added to list, but ignored in iteration
st.add("name", "Tom");
st.add("name", "Sumana");
String expected = "hi Tom, Sumana!";
String result = st.render();
assertEquals(expected, result);
}
@Test public void testTemplateAppliedToNullIsEmpty() throws Exception {
STGroup group = new STGroup();