|
@@ -0,0 +1,18 @@
|
|
|
+package cn.com.qmth.examcloud.core.questions.test;
|
|
|
+
|
|
|
+import cn.com.qmth.examcloud.core.questions.starter.CoreQuestionApp;
|
|
|
+import org.junit.Test;
|
|
|
+import org.junit.runner.RunWith;
|
|
|
+import org.springframework.boot.test.context.SpringBootTest;
|
|
|
+import org.springframework.test.context.junit4.SpringRunner;
|
|
|
+
|
|
|
+@RunWith(SpringRunner.class)
|
|
|
+@SpringBootTest(classes = CoreQuestionApp.class)
|
|
|
+public class QuestionTest {
|
|
|
+
|
|
|
+ @Test
|
|
|
+ public void demo() throws Exception {
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+}
|