use of org.thymeleaf.templateengine.springintegration.context.SpringIntegrationWebProcessingContextBuilder in project thymeleaf-tests by thymeleaf.
the class SpringIntegrationTest method testForm.
@Test
public void testForm() throws Exception {
final TestExecutor executor = TestExecutorFactory.createTestExecutor();
executor.setProcessingContextBuilder(new SpringIntegrationWebProcessingContextBuilder());
executor.setDialects(Arrays.asList(new IDialect[] { SpringSpecificVersionUtils.createSpringStandardDialectInstance() }));
executor.setThrottleStep(this.throttleStep);
executor.execute("classpath:templateengine/springintegration/form");
Assert.assertTrue(executor.isAllOK());
}
Aggregations