2019-10-31 20:43:47 -05:00
|
|
|
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)
|
2020-04-09 20:55:15 +02:00
|
|
|
@ContextConfiguration({ "/RedirectionWebSecurityConfig.xml" })
|
2019-10-31 20:43:47 -05:00
|
|
|
@WebAppConfiguration
|
|
|
|
public class SpringContextTest {
|
|
|
|
@Test
|
|
|
|
public void whenSpringContextIsBootstrapped_thenNoExceptions() {
|
|
|
|
}
|
|
|
|
}
|