Spring 전환 최소 실행 골격 구현 #4

Open
forge-bot wants to merge 6 commits from forge/role-developer-001-attempt-1-run-13e76c4f33b3 into main
Showing only changes of commit 1385da7689 - Show all commits

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