17 lines
534 B
Java
17 lines
534 B
Java
|
package com.baeldung;
|
||
|
|
||
|
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({ "/RedirectionWebSecurityConfig.xml", "/mvc-servlet.xml" })
|
||
|
@WebAppConfiguration
|
||
|
public class SpringContextTest {
|
||
|
@Test
|
||
|
public void whenSpringContextIsBootstrapped_thenNoExceptions() {
|
||
|
}
|
||
|
}
|