Spring 전환 최소 실행 골격 재검증 (role-developer-reverify-001)
Some checks failed
ci / test (pull_request) Failing after 1m16s

This commit is contained in:
forge-bot 2026-07-14 05:23:02 +00:00
parent 2642235adf
commit b8c0e7e9f7

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