2017-06-12 22:12:54 +02:00
|
|
|
package org.baeldung;
|
|
|
|
|
|
|
|
import org.junit.Test;
|
|
|
|
import org.junit.runner.RunWith;
|
|
|
|
import org.springframework.boot.test.context.SpringBootTest;
|
|
|
|
import org.springframework.test.context.junit4.SpringRunner;
|
|
|
|
|
2018-09-09 16:10:21 -04:00
|
|
|
import com.baeldung.reactive.Spring5ReactiveApplication;
|
|
|
|
|
2017-06-12 22:12:54 +02:00
|
|
|
@RunWith(SpringRunner.class)
|
2018-09-09 16:10:21 -04:00
|
|
|
@SpringBootTest(classes = Spring5ReactiveApplication.class)
|
|
|
|
public class SpringContextIntegrationTest {
|
2017-06-12 22:12:54 +02:00
|
|
|
|
|
|
|
@Test
|
2018-09-09 16:10:21 -04:00
|
|
|
public void whenSpringContextIsBootstrapped_thenNoExceptions() {
|
2017-06-12 22:12:54 +02:00
|
|
|
}
|
|
|
|
}
|