2018-12-08 18:37:08 +05:30
|
|
|
package com.baeldung;
|
2018-09-15 22:19:20 -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;
|
|
|
|
|
|
|
|
import com.baeldung.custom.CustomApplication;
|
|
|
|
import com.baeldung.produceimage.ImageApplication;
|
|
|
|
import com.baeldung.propertyeditor.PropertyEditorApplication;
|
|
|
|
import com.baeldung.responseheaders.ResponseHeadersApplication;
|
2018-12-08 18:37:08 +05:30
|
|
|
import com.baeldung.sampleapp.config.MainApplication;
|
2018-09-15 22:19:20 -04:00
|
|
|
import com.baeldung.web.log.app.Application;
|
|
|
|
|
|
|
|
@RunWith(SpringRunner.class)
|
|
|
|
@SpringBootTest(classes = { CustomApplication.class, ImageApplication.class, PropertyEditorApplication.class,
|
2018-12-11 12:17:29 -02:00
|
|
|
ResponseHeadersApplication.class, Application.class, com.baeldung.web.upload.app.UploadApplication.class,
|
2018-09-15 22:19:20 -04:00
|
|
|
MainApplication.class})
|
|
|
|
public class SpringContextIntegrationTest {
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void whenSpringContextIsBootstrapped_thenNoExceptions() {
|
|
|
|
}
|
|
|
|
}
|