2020-03-19 21:11:07 +01:00
|
|
|
package com.baeldung;
|
2019-10-31 20:43:47 -05:00
|
|
|
|
2020-03-19 21:11:07 +01:00
|
|
|
import com.baeldung.spring.ClientConfig;
|
|
|
|
import com.baeldung.spring.MvcConfig;
|
|
|
|
import com.baeldung.spring.SecSecurityConfig;
|
2019-10-31 20:43:47 -05:00
|
|
|
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)
|
|
|
|
@ContextConfiguration(classes = { ClientConfig.class, MvcConfig.class, SecSecurityConfig.class })
|
|
|
|
@WebAppConfiguration
|
|
|
|
public class SpringContextTest {
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void whenSpringContextIsBootstrapped_thenNoExceptions() {
|
|
|
|
}
|
|
|
|
}
|