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