@Test
public void render_PrkFunctions_paddingZero() throws ParseException, PirkaLoadException, TemplateNotFoundException {
String templateName = "PrkFunctions_paddingZero";
Template tmpl = loader.load(getTemplateFileName(templateName));
viewModel.put("value", 127);
String actual = tmpl.generate(viewModel).render();
assertRenderEquals(templateName, actual);
}
@Test
public void render_PrkFunctions_format() throws ParseException, PirkaLoadException, TemplateNotFoundException {