|
@@ -341,7 +341,7 @@ public class TestFacade {
|
|
|
indicationPushVOList.add(indicationPushVO);
|
|
|
}
|
|
|
|
|
|
- Map<String, Object> map = getDebugMap(indicationPushVOList, "3", start);
|
|
|
+ Map<String, Object> map = getDebugMapMulti(indicationPushVOList, "3", start);
|
|
|
return map;
|
|
|
}
|
|
|
|
|
@@ -540,7 +540,7 @@ public class TestFacade {
|
|
|
indicationPushVOList.add(indicationPushVO);
|
|
|
}
|
|
|
|
|
|
- Map<String, Object> map = getDebugMap(indicationPushVOList, "3", start);
|
|
|
+ Map<String, Object> map = getDebugMapMulti(indicationPushVOList, "3", start);
|
|
|
return map;
|
|
|
}
|
|
|
|
|
@@ -957,8 +957,12 @@ public class TestFacade {
|
|
|
}
|
|
|
map.put("总条数", indicationPushVOList.size() + "条");
|
|
|
map.put("出错条数", msg.size() + "条");
|
|
|
- map.put("出错信息", msg);
|
|
|
- map.put("程序报错", errMsg);
|
|
|
+ if (ListUtil.isNotEmpty(msg)) {
|
|
|
+ map.put("出错信息", msg);
|
|
|
+ }
|
|
|
+ if (ListUtil.isNotEmpty(errMsg)) {
|
|
|
+ map.put("程序报错", errMsg);
|
|
|
+ }
|
|
|
map.put("执行时间", (System.currentTimeMillis() - start) / 1000.0 + "秒");
|
|
|
return map;
|
|
|
}
|
|
@@ -1001,7 +1005,9 @@ public class TestFacade {
|
|
|
}
|
|
|
}
|
|
|
map.put("总条数", indicationPushVOList.size() + "条");
|
|
|
- map.put("出错信息", errMsg);
|
|
|
+ if (ListUtil.isNotEmpty(errMsg)) {
|
|
|
+ map.put("出错信息", errMsg);
|
|
|
+ }
|
|
|
map.put("出错条数", errMsg.size() + "条");
|
|
|
Long t2 = System.currentTimeMillis();
|
|
|
map.put("执行时间", (t2 - start) / 1000.0 + "秒");
|