JAVA-6511 update readme, add context test

This commit is contained in:
Loredana Crusoveanu
2021-08-20 10:54:24 +03:00
parent 946a0a9f74
commit 6c732ed8f9
3 changed files with 18 additions and 5 deletions

View File

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