exclude auto-configuration

This commit is contained in:
DOHA
2018-12-31 16:51:27 +02:00
parent f757eba28b
commit 3107ee92a1
8 changed files with 162 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
package com.baeldung.boot;
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 = Application.class)
public class SpringContextIntegrationTest {
@Test
public void whenSpringContextIsBootstrapped_thenNoExceptions() {
}
}