From 4addc670beca3c06f259037224be919ceb4872c6 Mon Sep 17 00:00:00 2001 From: HaRim <76032947+HwangHarim@users.noreply.github.com> Date: Tue, 2 Jul 2024 17:03:00 +0900 Subject: [PATCH] =?UTF-8?q?reface=20:=20test=20=EA=B2=BD=EB=A1=9C=20?= =?UTF-8?q?=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/urlshortener/ApplicationTests.java | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/test/java/com/urlshortener/ApplicationTests.java diff --git a/src/test/java/com/urlshortener/ApplicationTests.java b/src/test/java/com/urlshortener/ApplicationTests.java new file mode 100644 index 0000000..acf97c3 --- /dev/null +++ b/src/test/java/com/urlshortener/ApplicationTests.java @@ -0,0 +1,13 @@ +package com.urlshortener; + +import org.junit.jupiter.api.Test; +import org.springframework.boot.test.context.SpringBootTest; + +@SpringBootTest +public class ApplicationTests { + + @Test + void contextLoads() { + } + +}