diff --git a/src/test/java/com/example/developer/DeveloperApplicationTests.java b/src/test/java/com/example/developer/DeveloperApplicationTests.java new file mode 100644 index 0000000..f6ce600 --- /dev/null +++ b/src/test/java/com/example/developer/DeveloperApplicationTests.java @@ -0,0 +1,19 @@ +package com.example.developer; + +import org.junit.jupiter.api.Test; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.boot.test.context.SpringBootTest; + +import static org.assertj.core.api.Assertions.assertThat; + +@SpringBootTest +class DeveloperApplicationTests { + + @Autowired + private DeveloperApplication application; + + @Test + void contextLoads() { + assertThat(application).isNotNull(); + } +}