From 1385da768979209667d6ec2ae6649d5bdeafa5e6 Mon Sep 17 00:00:00 2001 From: forge-bot Date: Tue, 14 Jul 2026 05:03:26 +0000 Subject: [PATCH] =?UTF-8?q?Spring=20=EC=A0=84=ED=99=98=20=EC=B5=9C?= =?UTF-8?q?=EC=86=8C=20=EC=8B=A4=ED=96=89=20=EA=B3=A8=EA=B2=A9=20=EA=B5=AC?= =?UTF-8?q?=ED=98=84=20(role-developer-001)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/example/demo/DemoApplicationTests.java | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/test/java/com/example/demo/DemoApplicationTests.java diff --git a/src/test/java/com/example/demo/DemoApplicationTests.java b/src/test/java/com/example/demo/DemoApplicationTests.java new file mode 100644 index 0000000..0a84dc8 --- /dev/null +++ b/src/test/java/com/example/demo/DemoApplicationTests.java @@ -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 + } +}