@Test(dataProvider = "dp")
public void runTest(Map<String, Object> model, String template, String expected)
throws IOException {
// InputStream is = new StringInputStream(template);
Assert.assertEquals(new Mustache().run(template, model), expected);
}