Spring 전환 골격 최신 reviewer 검증 (role-developer-reverify-550-001)

This commit is contained in:
forge-bot 2026-07-14 05:49:12 +00:00
parent 82ce0fe5e6
commit d35dfe419e

View file

@ -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
}
}