assertEquals("", parseEzt("[format raw]").renderToString(dict_));
}
// Ensure that no state is being shared between evaluations
public void testMultipleParses() throws TemplateException {
TemplateParser tp = EztParser.create();
Template t1 = Template.parse(tp, "[define x]X[end][x]");
Template t2 = Template.parse(tp, "[x][define y]Y[end][y]");
assertEquals("X", t1.renderToString(TemplateDictionary.create()));