use of org.thymeleaf.templateengine.dataprefix.stsm.context.STSMWebProcessingContextBuilder in project thymeleaf-tests by thymeleaf.
the class DataPrefixSTSMTest method testSTSM.
@Test
public void testSTSM() throws Exception {
final TestExecutor executor = TestExecutorFactory.createTestExecutor();
executor.setProcessingContextBuilder(new STSMWebProcessingContextBuilder());
executor.setDialects(Arrays.asList(new IDialect[] { SpringSpecificVersionUtils.createSpringStandardDialectInstance() }));
executor.execute("classpath:templateengine/dataprefix/stsm");
Assert.assertTrue(executor.isAllOK());
}
Aggregations