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