2019-07-20 17:03:56 +05:30
|
|
|
package org.baeldung;
|
|
|
|
|
|
|
|
import org.junit.Test;
|
|
|
|
import org.junit.runner.RunWith;
|
|
|
|
import org.springframework.test.context.ContextConfiguration;
|
|
|
|
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
|
|
|
|
|
|
|
|
@RunWith(SpringJUnit4ClassRunner.class)
|
2019-09-25 18:55:50 +05:30
|
|
|
@ContextConfiguration(locations = { "classpath:applicationContext.xml" })
|
2019-07-20 17:03:56 +05:30
|
|
|
public class SpringContextTest {
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void whenSpringContextIsBootstrapped_thenNoExceptions() {
|
|
|
|
}
|
|
|
|
}
|