BAEL-20875: Move spring-boot-logging-log4j2 into spring-boot-modules

This commit is contained in:
Krzysztof Woyke
2020-01-31 08:38:03 +01:00
parent b479e97f2e
commit 616175544c
13 changed files with 2 additions and 3 deletions

View File

@@ -0,0 +1,17 @@
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;
import com.baeldung.springbootlogging.SpringBootLoggingApplication;
@RunWith(SpringRunner.class)
@SpringBootTest(classes = SpringBootLoggingApplication.class)
public class SpringContextTest {
@Test
public void whenSpringContextIsBootstrapped_thenNoExceptions() {
}
}