Skip to content

Commit 9f42f62

Browse files
author
Eugen Paraschiv
committed
new spring context test
1 parent c89879c commit 9f42f62

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)