// System.out.println(t.getConfig().getViewPath());
// System.out.println(t.getConfig().getCompiledPath());
View view = t.getView("/testIf.html");
ByteArrayOutputStream out = new ByteArrayOutputStream();
Model model = new ModelMock();
view.render(model, out);
out.close();
System.out.println(out.toString());
System.out.println("=======================================");
out = new ByteArrayOutputStream();