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