Merge branch 'feature_探索' into feature_microservice

This commit is contained in:
Weasley J
2023-08-09 18:04:00 +08:00
2 changed files with 4 additions and 1 deletions
+1 -1
View File
@@ -94,7 +94,7 @@
## 2 项目代码质量
![image-20230728152146033](https://weasley.oss-cn-shanghai.aliyuncs.com/Photos/image-20230728152146033.png)
![image-20230809180205681](https://weasley.oss-cn-shanghai.aliyuncs.com/Photos/image-20230809180205681.png)
## 3 软件运行概况
@@ -2,6 +2,7 @@ package cn.alphahub.eport.signature.core.web;
import cn.alphahub.eport.signature.config.ChinaEportProperties;
import lombok.extern.slf4j.Slf4j;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.DisplayName;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
@@ -24,6 +25,7 @@ class EportReportResultHttpClientTest {
void getCeb312msg() {
String result = eportReportResultHttpClient.getCeb312msgResult(chinaEportProperties.getDxpId(), "20230806121200");
log.info("311回执结果:{}", result);
Assertions.assertNotNull(result, "311回执结果不为空");
}
@Test
@@ -31,5 +33,6 @@ class EportReportResultHttpClientTest {
void getCe622msg() {
String result = eportReportResultHttpClient.getCe622msgResult(chinaEportProperties.getDxpId(), "20230806121200");
log.info("621回执结果:{}", result);
Assertions.assertNotNull(result, "621回执结果不为空");
}
}