diff options
Diffstat (limited to 'src/test/java/org/berzerkula/builddb/BuilddbApplicationTest.java')
-rw-r--r-- | src/test/java/org/berzerkula/builddb/BuilddbApplicationTest.java | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/test/java/org/berzerkula/builddb/BuilddbApplicationTest.java b/src/test/java/org/berzerkula/builddb/BuilddbApplicationTest.java new file mode 100644 index 0000000..57604be --- /dev/null +++ b/src/test/java/org/berzerkula/builddb/BuilddbApplicationTest.java @@ -0,0 +1,24 @@ +package org.berzerkula.builddb; + +import org.assertj.core.api.Assertions; +import org.berzerkula.builddb.services.AppUserService; +import org.junit.jupiter.api.Test; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.boot.test.context.SpringBootTest; + +@SpringBootTest +class BuilddbApplicationTest { + + @Autowired + AppUserService appUserService; + + @Test + public void contextLoads() { + Assertions.assertThat(appUserService).isNotNull(); + } + + @Test + public void main() { + BuilddbApplication.main(new String[] {}); + } +}
\ No newline at end of file |