2019-10-17 17:17:31 +01:00
|
|
|
package com.baeldung;
|
|
|
|
|
|
|
|
|
|
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.produceimage.ImageApplication;
|
|
|
|
|
import com.baeldung.responseheaders.ResponseHeadersApplication;
|
|
|
|
|
|
|
|
|
|
@RunWith(SpringRunner.class)
|
2019-11-07 17:58:42 +00:00
|
|
|
@SpringBootTest(classes = { ImageApplication.class,
|
|
|
|
|
ResponseHeadersApplication.class,
|
|
|
|
|
com.baeldung.web.upload.app.UploadApplication.class,
|
|
|
|
|
})
|
2019-10-17 17:17:31 +01:00
|
|
|
public class SpringContextTest {
|
|
|
|
|
|
|
|
|
|
@Test
|
|
|
|
|
public void whenSpringContextIsBootstrapped_thenNoExceptions() {
|
|
|
|
|
}
|
|
|
|
|
}
|