2018-09-16 13:53:36 -04: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-27 22:52:50 -04:00
|
|
|
import com.baeldung.ecommerce.EcommerceApplication;
|
2018-09-16 13:53:36 -04:00
|
|
|
|
|
|
|
|
@RunWith(SpringRunner.class)
|
2018-09-27 22:52:50 -04:00
|
|
|
@SpringBootTest(classes = EcommerceApplication.class)
|
2018-09-16 13:53:36 -04:00
|
|
|
public class SpringContextIntegrationTest {
|
|
|
|
|
|
|
|
|
|
@Test
|
|
|
|
|
public void whenSpringContextIsBootstrapped_thenNoExceptions() {
|
|
|
|
|
}
|
|
|
|
|
}
|