16 lines
481 B
Java
16 lines
481 B
Java
|
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)
|
||
|
@ContextConfiguration(locations = {"classpath:applicationContext.xml", "classpath:EmbeddedActiveMQ.xml"})
|
||
|
public class SpringContextTest {
|
||
|
|
||
|
@Test
|
||
|
public void whenSpringContextIsBootstrapped_thenNoExceptions() {
|
||
|
}
|
||
|
}
|