diff --git a/src/test/java/com/example/demo/DeveloperApplicationTests.java b/src/test/java/com/example/demo/DeveloperApplicationTests.java new file mode 100644 index 0000000..7987d88 --- /dev/null +++ b/src/test/java/com/example/demo/DeveloperApplicationTests.java @@ -0,0 +1,14 @@ +package com.example.demo; + +import org.junit.jupiter.api.Test; +import org.springframework.boot.test.context.SpringBootTest; +import org.springframework.test.context.TestPropertySource; + +@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT) +@TestPropertySource(properties = {"spring.main.allow-bean-definition-overriding=true"}) +class DeveloperApplicationTests { + + @Test + void contextLoads() { + } +}