|
@@ -2,6 +2,7 @@ package com.tao;
|
|
|
|
|
|
import cn.hutool.core.io.file.FileReader;
|
|
|
import cn.hutool.core.util.ReUtil;
|
|
|
+import cn.hutool.core.util.RuntimeUtil;
|
|
|
import com.tao.pojo.AppElement;
|
|
|
import com.tao.pojo.AppPage;
|
|
|
import com.tao.service.AppElementService;
|
|
@@ -10,7 +11,10 @@ import org.junit.jupiter.api.Test;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.boot.test.context.SpringBootTest;
|
|
|
|
|
|
+import javax.xml.bind.DatatypeConverter;
|
|
|
+import java.io.*;
|
|
|
import java.util.ArrayList;
|
|
|
+import java.util.Base64;
|
|
|
import java.util.List;
|
|
|
import java.util.regex.Pattern;
|
|
|
|
|
@@ -21,10 +25,7 @@ class ElementSyncApplicationTests {
|
|
|
AppElementService appElementService;
|
|
|
|
|
|
@Test
|
|
|
- void contextLoads() {
|
|
|
- // List<AppElement> agree = appElementService.selectAppElementListFuzzy(new AppElement(null, "agree", null, null, null, null, null, null));
|
|
|
- // System.out.println("agree = " + agree);
|
|
|
- System.out.println("测试代码");
|
|
|
+ void contextLoads() throws InterruptedException {
|
|
|
}
|
|
|
|
|
|
}
|