2017-01-25 09:36:18 -05: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-18 22:57:03 -04:00
|
|
|
import com.baeldung.spring.cloud.bootstrap.config.ConfigApplication;
|
|
|
|
|
2017-01-25 09:36:18 -05:00
|
|
|
@RunWith(SpringRunner.class)
|
2018-09-18 22:57:03 -04:00
|
|
|
@SpringBootTest(classes = ConfigApplication.class)
|
|
|
|
public class SpringContextIntegrationTest {
|
|
|
|
|
2017-01-25 09:36:18 -05:00
|
|
|
@Test
|
2018-09-18 22:57:03 -04:00
|
|
|
public void whenSpringContextIsBootstrapped_thenNoExceptions() {
|
2017-01-25 09:36:18 -05:00
|
|
|
}
|
|
|
|
}
|