From a6d248bf1bb85a98cdd32cc766fc6f8dedab5dd7 Mon Sep 17 00:00:00 2001 From: forge-bot Date: Tue, 14 Jul 2026 08:26:00 +0000 Subject: [PATCH] =?UTF-8?q?Developer=20=EC=97=AD=ED=95=A0=20Spring=20?= =?UTF-8?q?=EA=B3=A8=EA=B2=A9=20smoke=20(role-developer-live-v2-001)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../developer/DeveloperApplicationTests.java | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 src/test/java/com/example/developer/DeveloperApplicationTests.java diff --git a/src/test/java/com/example/developer/DeveloperApplicationTests.java b/src/test/java/com/example/developer/DeveloperApplicationTests.java new file mode 100644 index 0000000..f6ce600 --- /dev/null +++ b/src/test/java/com/example/developer/DeveloperApplicationTests.java @@ -0,0 +1,19 @@ +package com.example.developer; + +import org.junit.jupiter.api.Test; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.boot.test.context.SpringBootTest; + +import static org.assertj.core.api.Assertions.assertThat; + +@SpringBootTest +class DeveloperApplicationTests { + + @Autowired + private DeveloperApplication application; + + @Test + void contextLoads() { + assertThat(application).isNotNull(); + } +}