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[] {}); } }