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