use of org.thymeleaf.templateengine.elementprocessors.dialect.MarkupDialect in project thymeleaf-tests by thymeleaf.
the class ElementProcessorsTest method testElementMarkupProcessors.
@Test
public void testElementMarkupProcessors() throws Exception {
final TestExecutor executor = TestExecutorFactory.createTestExecutor();
executor.setDialects(Arrays.asList(new IDialect[] { new StandardDialect(), new MarkupDialect() }));
executor.setThrottleStep(this.throttleStep);
executor.execute("classpath:templateengine/elementprocessors/markup");
Assert.assertTrue(executor.isAllOK());
}
Aggregations