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