From 976cc97b2450535f2ab4b4051decae1e7ffb2762 Mon Sep 17 00:00:00 2001 From: "chen.ma" Date: Tue, 25 Jan 2022 22:53:57 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E7=A4=BA=E4=BE=8B=E9=A1=B9?= =?UTF-8?q?=E7=9B=AE=E5=8D=95=E5=85=83=E6=B5=8B=E8=AF=95.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../hippo4j/example/ExampleApplication.java | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 hippo4j-example/src/test/java/cn/hippo4j/example/ExampleApplication.java diff --git a/hippo4j-example/src/test/java/cn/hippo4j/example/ExampleApplication.java b/hippo4j-example/src/test/java/cn/hippo4j/example/ExampleApplication.java new file mode 100644 index 00000000..787cd8fc --- /dev/null +++ b/hippo4j-example/src/test/java/cn/hippo4j/example/ExampleApplication.java @@ -0,0 +1,25 @@ +package cn.hippo4j.example; + +import lombok.extern.slf4j.Slf4j; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.springframework.boot.test.context.SpringBootTest; +import org.springframework.test.context.junit4.SpringRunner; + +/** + * Example application. + * + * @author chen.ma + * @date 2022/1/25 21:34 + */ +@Slf4j +@RunWith(SpringRunner.class) +@SpringBootTest(classes = ExampleApplication.class) +public class ExampleApplication { + + @Test + public void test() { + log.info("test success."); + } + +}