瀏覽代碼

删除test文件

xusl 2 年之前
父節點
當前提交
07bdf4f4b1

+ 0 - 22
backend/src/test/java/com/jiayue/ssi/service/DownLoadDataServiceTest.java

@@ -1,22 +0,0 @@
-package com.jiayue.ssi.service;
-
-import com.jiayue.ssi.BaseTest;
-import org.junit.Test;
-import org.springframework.beans.factory.annotation.Autowired;
-
-/**
- * TODO
- *
- * @author xsl
- * @version 3.0
- */
-public class DownLoadDataServiceTest extends BaseTest{
-    @Autowired
-    DownLoadDataService downLoadDataService;
-
-    @Test
-    public void downloadData(){
-        downLoadDataService.downloadData();
-    }
-
-}

+ 0 - 23
backend/src/test/java/com/jiayue/ssi/service/SsqDataTest.java

@@ -1,23 +0,0 @@
-package com.jiayue.ssi.service;
-
-import com.jiayue.ssi.BaseTest;
-import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
-import org.junit.Test;
-import org.springframework.beans.factory.annotation.Autowired;
-
-/**
- * TODO
- *
- * @author xsl
- * @version 3.0
- */
-public class SsqDataTest extends BaseTest {
-    @Autowired
-    SsqDataService ssqDataService;
-
-    @Test
-    public void queryPage() throws Exception{
-        Page<SsqData> rp = (Page<SsqData>) ssqDataService.page(new Page<>(1,2000),null);
-        System.out.println(rp.getSize());
-    }
-}