19 lines
454 B
Java
19 lines
454 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.SpringRunner;
|
|
|
|
import com.baeldung.config.TestConfig;
|
|
|
|
@RunWith(SpringRunner.class)
|
|
@ContextConfiguration(classes = {TestConfig.class})
|
|
public class SpringContextTest {
|
|
|
|
@Test
|
|
public void whenSpringContextIsBootstrapped_thenNoExceptions() {
|
|
|
|
}
|
|
}
|