Spring 전환 최소 실행 골격 구현 (role-developer-001)

This commit is contained in:
forge-bot 2026-07-14 05:03:26 +00:00
parent 3ddbca90e0
commit 1385da7689

View file

@ -0,0 +1,15 @@
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 DemoApplicationTests {
@Test
void contextLoads() {
// Verify Spring context loads successfully
}
}