[BAEL-19420] - Removed the duplicate SpringContextIntegrationTest and spring-context profile

This commit is contained in:
amit2103
2019-11-20 11:11:07 +05:30
parent 61815909cf
commit bd8a6c0271
167 changed files with 6 additions and 2974 deletions

View File

@@ -1,20 +0,0 @@
package com.baeldung;
import org.baeldung.spring.SecSecurityConfig;
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.support.AnnotationConfigContextLoader;
import org.springframework.test.context.web.WebAppConfiguration;
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(classes = { SecSecurityConfig.class }, loader = AnnotationConfigContextLoader.class)
@WebAppConfiguration
public class SpringContextIntegrationTest {
@Test
public void whenSpringContextIsBootstrapped_thenNoExceptions() {
}
}