2018-09-15 13:57:53 -04:00
|
|
|
package org.baeldung;
|
|
|
|
|
|
2019-03-17 00:28:43 +05:30
|
|
|
import org.baeldung.resttemplate.RestTemplateConfigurationApplication;
|
2018-09-15 13:57:53 -04: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 = RestTemplateConfigurationApplication.class)
|
|
|
|
|
public class SpringContextIntegrationTest {
|
|
|
|
|
|
|
|
|
|
@Test
|
|
|
|
|
public void whenSpringContextIsBootstrapped_thenNoExceptions() {
|
|
|
|
|
}
|
|
|
|
|
}
|