use of org.thymeleaf.engine21.dom.dialect.DOMDialect in project thymeleaf-tests by thymeleaf.
the class DOM20Test method testDOM.
@Test
public void testDOM() throws Exception {
final TestExecutor executor = new TestExecutor();
executor.setDialects(Arrays.asList(new IDialect[] { new StandardDialect(), new DOMDialect() }));
executor.execute("classpath:engine20/dom");
Assert.assertTrue(executor.isAllOK());
}
use of org.thymeleaf.engine21.dom.dialect.DOMDialect in project thymeleaf-tests by thymeleaf.
the class DOM30Test method testDOM.
@Test
public void testDOM() throws Exception {
final TestExecutor executor = new TestExecutor();
executor.setDialects(Arrays.asList(new IDialect[] { new StandardDialect(), new DOMDialect() }));
executor.execute("classpath:engine30/dom");
Assert.assertTrue(executor.isAllOK());
}
use of org.thymeleaf.engine21.dom.dialect.DOMDialect in project thymeleaf-tests by thymeleaf.
the class DOM21Test method testDOM.
@Test
public void testDOM() throws Exception {
final TestExecutor executor = new TestExecutor();
executor.setDialects(Arrays.asList(new IDialect[] { new StandardDialect(), new DOMDialect() }));
executor.execute("classpath:engine21/dom");
Assert.assertTrue(executor.isAllOK());
}
Aggregations