2019-11-07 04:12:51 +01:00
|
|
|
package com.baeldung.springdoc;
|
|
|
|
|
|
|
|
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
|
2019-11-20 11:11:07 +05:30
|
|
|
public class SpringContextTest {
|
2019-11-07 04:12:51 +01:00
|
|
|
|
|
|
|
@Test
|
|
|
|
public void whenSpringContextIsBootstrapped_thenNoExceptions() {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|