Commit 2012a667 authored by 黎博's avatar 黎博

Merge branch 'master' into mock

parents f8ddeb91 d32cd737
...@@ -85,6 +85,9 @@ public class DingdingUtils { ...@@ -85,6 +85,9 @@ public class DingdingUtils {
String content = format.format(date) + "\n\n"; String content = format.format(date) + "\n\n";
content += "今日测试进度:" + progress + " \n\n"; content += "今日测试进度:" + progress + " \n\n";
content = content + "剩余未解决BUG列表:" + "\n\n"; content = content + "剩余未解决BUG列表:" + "\n\n";
if (issueList.size() == 0) {
content += "暂无未解决BUG!";
}
int count = 0; int count = 0;
for (Issue issue: issueList) { for (Issue issue: issueList) {
count += 1; count += 1;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment