Add Empty Boot sample

Closes gh-1
This commit is contained in:
Tom van den Berge
2020-04-15 22:21:52 +02:00
committed by Josh Cummings
parent 8582f231b4
commit 82be38c00b
8 changed files with 360 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
package sample;
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.context.ApplicationContext;
import static org.assertj.core.api.Assertions.assertThat;
@SpringBootTest
public class ApplicationTest {
@Test
public void loadContext(ApplicationContext context) {
assertThat(context).isNotNull();
}
}