@Test
public void render_ConditionNotEmptyTrue_List() throws ParseException, PirkaLoadException,
TemplateNotFoundException {
String templateName = "ConditionNotEmptyTrue";
Template tmpl = loader.load(getTemplateFileName(templateName));
ArrayList<String> list = new ArrayList<String>();
list.add("Item");
viewModel.put("items", list);
String actual = tmpl.generate(viewModel).render();
assertRenderEquals(templateName, actual);
}