JAVA-8281: split or move spring-thymeleaf module

This commit is contained in:
chaos2418
2021-12-18 17:40:12 +05:30
parent 14e93c1410
commit 00bcc4229b
28 changed files with 518 additions and 44 deletions

View File

@@ -0,0 +1,19 @@
package com.baeldung.thymeleaf;
import com.baeldung.thymeleaf.config.WebApp;
import com.baeldung.thymeleaf.config.WebMVCConfig;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
import org.springframework.test.context.web.WebAppConfiguration;
@RunWith(SpringJUnit4ClassRunner.class)
@WebAppConfiguration
@ContextConfiguration(classes = { WebApp.class, WebMVCConfig.class })
public class SpringContextTest {
@Test
public void whenSpringContextIsBootstrapped_thenNoExceptions() {
}
}