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