Skip to content

Commit

Permalink
Merge branch 'feature_探索'
Browse files Browse the repository at this point in the history
  • Loading branch information
Weasley J committed Aug 9, 2023
2 parents 597513f + c533064 commit 2558ccd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 软件运行概况

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

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;
Expand All @@ -24,12 +25,14 @@ class EportReportResultHttpClientTest {
void getCeb312msg() {
String result = eportReportResultHttpClient.getCeb312msgResult(chinaEportProperties.getDxpId(), "20230806121200");
log.info("311回执结果:{}", result);
Assertions.assertNotNull(result, "311回执结果不为空");
}

@Test
@DisplayName("查询 621 申报回执")
void getCe622msg() {
String result = eportReportResultHttpClient.getCe622msgResult(chinaEportProperties.getDxpId(), "20230806121200");
log.info("621回执结果:{}", result);
Assertions.assertNotNull(result, "621回执结果不为空");
}
}

0 comments on commit 2558ccd

Please sign in to comment.