2017-11-29 14:57:56 +02:00
|
|
|
package org.baeldung;
|
|
|
|
|
|
2018-05-20 12:07:44 +03:00
|
|
|
import org.baeldung.custom.Application;
|
2017-11-29 14:57:56 +02:00
|
|
|
import org.junit.Test;
|
|
|
|
|
import org.junit.runner.RunWith;
|
|
|
|
|
import org.springframework.boot.test.context.SpringBootTest;
|
|
|
|
|
import org.springframework.test.context.junit4.SpringRunner;
|
|
|
|
|
|
|
|
|
|
@RunWith(SpringRunner.class)
|
|
|
|
|
@SpringBootTest(classes = Application.class)
|
|
|
|
|
public class SpringContextIntegrationTest {
|
|
|
|
|
|
|
|
|
|
@Test
|
|
|
|
|
public void whenSpringContextIsBootstrapped_thenNoExceptions() {
|
|
|
|
|
}
|
|
|
|
|
}
|