Search in sources :

Example 11 with StandardDialect

use of org.thymeleaf.standard.StandardDialect in project thymeleaf-tests by thymeleaf.

the class ConditionalCommentsTest method testConditionalComments.

@Test
public void testConditionalComments() throws Exception {
    final TestExecutor executor = TestExecutorFactory.createTestExecutor();
    executor.setDialects(Arrays.asList(new IDialect[] { new StandardDialect() }));
    executor.setThrottleStep(this.throttleStep);
    executor.execute("classpath:templateengine/conditionalcomments");
    Assert.assertTrue(executor.isAllOK());
}
Also used : TestExecutor(org.thymeleaf.testing.templateengine.engine.TestExecutor) StandardDialect(org.thymeleaf.standard.StandardDialect) IDialect(org.thymeleaf.dialect.IDialect) Test(org.junit.Test)

Example 12 with StandardDialect

use of org.thymeleaf.standard.StandardDialect in project thymeleaf-tests by thymeleaf.

the class ContextTest method testContextVarTest.

@Test
public void testContextVarTest() throws Exception {
    final TestExecutor executor = TestExecutorFactory.createTestExecutor();
    executor.setDialects(Arrays.asList(new IDialect[] { new StandardDialect(), new ContextVarTestDialect() }));
    executor.setProcessingContextBuilder(new WebProcessingContextBuilder());
    executor.setThrottleStep(this.throttleStep);
    executor.execute("classpath:templateengine/context/vartest");
    Assert.assertTrue(executor.isAllOK());
}
Also used : TestExecutor(org.thymeleaf.testing.templateengine.engine.TestExecutor) ContextVarTestDialect(org.thymeleaf.templateengine.context.dialect.ContextVarTestDialect) WebProcessingContextBuilder(org.thymeleaf.testing.templateengine.context.web.WebProcessingContextBuilder) StandardDialect(org.thymeleaf.standard.StandardDialect) IDialect(org.thymeleaf.dialect.IDialect) Test(org.junit.Test)

Example 13 with StandardDialect

use of org.thymeleaf.standard.StandardDialect in project thymeleaf-tests by thymeleaf.

the class DOM20Test method testDOM.

@Test
public void testDOM() throws Exception {
    final TestExecutor executor = new TestExecutor();
    executor.setDialects(Arrays.asList(new IDialect[] { new StandardDialect(), new DOMDialect() }));
    executor.execute("classpath:engine20/dom");
    Assert.assertTrue(executor.isAllOK());
}
Also used : TestExecutor(org.thymeleaf.testing.templateengine.engine.TestExecutor) DOMDialect(org.thymeleaf.engine20.dom.dialect.DOMDialect) StandardDialect(org.thymeleaf.standard.StandardDialect) IDialect(org.thymeleaf.dialect.IDialect) Test(org.junit.Test)

Example 14 with StandardDialect

use of org.thymeleaf.standard.StandardDialect in project thymeleaf-tests by thymeleaf.

the class ContextTest20 method testContext.

@Test
public void testContext() throws Exception {
    final TestExecutor executor = new TestExecutor();
    executor.setDialects(Arrays.asList(new IDialect[] { new StandardDialect(), new ContextDialect() }));
    executor.execute("classpath:engine20/context");
    Assert.assertTrue(executor.isAllOK());
}
Also used : TestExecutor(org.thymeleaf.testing.templateengine.engine.TestExecutor) ContextDialect(org.thymeleaf.engine20.context.dialect.ContextDialect) StandardDialect(org.thymeleaf.standard.StandardDialect) IDialect(org.thymeleaf.dialect.IDialect) Test(org.junit.Test)

Example 15 with StandardDialect

use of org.thymeleaf.standard.StandardDialect in project thymeleaf-tests by thymeleaf.

the class ConditionalCommentsTest method testConditionalComments.

@Test
public void testConditionalComments() throws Exception {
    final TestExecutor executor = new TestExecutor();
    executor.setDialects(Arrays.asList(new IDialect[] { new StandardDialect(), new ConditionalCommentsDialect() }));
    executor.execute("classpath:engine21/conditionalcomments");
    Assert.assertTrue(executor.isAllOK());
}
Also used : TestExecutor(org.thymeleaf.testing.templateengine.engine.TestExecutor) StandardDialect(org.thymeleaf.standard.StandardDialect) IDialect(org.thymeleaf.dialect.IDialect) ConditionalCommentsDialect(org.thymeleaf.extras.conditionalcomments.dialect.ConditionalCommentsDialect) Test(org.junit.Test)

Aggregations

StandardDialect (org.thymeleaf.standard.StandardDialect)37 IDialect (org.thymeleaf.dialect.IDialect)36 Test (org.junit.Test)34 TestExecutor (org.thymeleaf.testing.templateengine.engine.TestExecutor)34 PrecedenceDialect (org.thymeleaf.templateengine.elementprocessors.dialect.PrecedenceDialect)6 ConditionalCommentsDialect (org.thymeleaf.extras.conditionalcomments.dialect.ConditionalCommentsDialect)4 TemplateBoundariesDialect (org.thymeleaf.templateengine.templateboundaries.dialect.TemplateBoundariesDialect)3 ArrayList (java.util.ArrayList)1 EnumMap (java.util.EnumMap)1 HashSet (java.util.HashSet)1 LinkedHashMap (java.util.LinkedHashMap)1 LinkedHashSet (java.util.LinkedHashSet)1 List (java.util.List)1 Map (java.util.Map)1 Set (java.util.Set)1 DialectConfiguration (org.thymeleaf.DialectConfiguration)1 EngineConfiguration (org.thymeleaf.EngineConfiguration)1 IEngineConfiguration (org.thymeleaf.IEngineConfiguration)1 ITemplateEngine (org.thymeleaf.ITemplateEngine)1 TemplateEngine (org.thymeleaf.TemplateEngine)1