diff --git a/fast-server/pom.xml b/fast-server/pom.xml
index 03af6c4..77b124b 100644
--- a/fast-server/pom.xml
+++ b/fast-server/pom.xml
@@ -15,9 +15,19 @@
1.0.0
+ net.maku
+ fast-boot-new
+ 1.0.0
+
+
com.github.xiaoymin
knife4j-springdoc-ui
+
+ org.springframework.boot
+ spring-boot-starter-test
+ test
+
diff --git a/fast-server/src/test/java/net/maku/FastTest.java b/fast-server/src/test/java/net/maku/FastTest.java
new file mode 100644
index 0000000..dc7c0cf
--- /dev/null
+++ b/fast-server/src/test/java/net/maku/FastTest.java
@@ -0,0 +1,14 @@
+package net.maku;
+
+import org.junit.jupiter.api.Test;
+import org.springframework.boot.test.context.SpringBootTest;
+
+@SpringBootTest
+public class FastTest {
+
+ @Test
+ public void test(){
+ System.out.println("测试用例!");
+ }
+
+}
diff --git a/pom.xml b/pom.xml
index 7c3a860..c2e8918 100644
--- a/pom.xml
+++ b/pom.xml
@@ -18,8 +18,8 @@
fast-boot-framework
- fast-boot-demo
fast-boot-system
+ fast-boot-new
fast-server