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