diff --git a/src/test/java/com/example/SpringBootMinimalApplicationTests.java b/src/test/java/com/example/SpringBootMinimalApplicationTests.java new file mode 100644 index 0000000..3ed26f7 --- /dev/null +++ b/src/test/java/com/example/SpringBootMinimalApplicationTests.java @@ -0,0 +1,20 @@ +package com.example; + +import org.junit.jupiter.api.Test; +import org.springframework.boot.test.context.SpringBootTest; +import org.springframework.test.context.TestPropertySource; + +/** + * Integration test to verify Spring Boot context loads successfully. + */ +@SpringBootTest +@TestPropertySource(properties = { + "spring.main.allow-bean-definition-overriding=true" +}) +class SpringBootMinimalApplicationTests { + + @Test + void contextLoads() { + // Verifies that the Spring application context loads without errors + } +}