Spring 전환 최소 실행 골격 재검증 #1

Open
forge-bot wants to merge 6 commits from forge/role-developer-reverify-001-attempt-1-run-91dbb119003d into main
Showing only changes of commit b8c0e7e9f7 - Show all commits

View file

@ -0,0 +1,15 @@
package com.example;
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.TestPropertySource;
@SpringBootTest
@TestPropertySource(properties = {"spring.main.allow-bean-definition-overriding=true"})
class SpringMinimalApplicationTests {
@Test
void contextLoads() {
// Verifies that the Spring context loads successfully
}
}