We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c89879c commit 9f42f62Copy full SHA for 9f42f62
spring-security-mvc-boot/src/test/java/org/baeldung/SpringContextIntegrationTest.java
@@ -0,0 +1,15 @@
1
+package org.baeldung;
2
+
3
+import org.junit.Test;
4
+import org.junit.runner.RunWith;
5
+import org.springframework.boot.test.context.SpringBootTest;
6
+import org.springframework.test.context.junit4.SpringRunner;
7
8
+@RunWith(SpringRunner.class)
9
+@SpringBootTest(classes = Application.class)
10
+public class SpringContextIntegrationTest {
11
12
+ @Test
13
+ public void whenSpringContextIsBootstrapped_thenNoExceptions() {
14
+ }
15
+}
0 commit comments