增加打印测试计划中用例数的日志
This commit is contained in:
parent
53e3612237
commit
3897efc15f
|
@ -144,7 +144,7 @@ public class AppTestControl {
|
|||
}
|
||||
LogOperation caselog = new LogOperation();
|
||||
List<ProjectCase> cases = GetServerAPI.getCasesbyplanId(taskScheduling.getPlanId());
|
||||
LogUtil.APP.info("当前计划中读取到用例共{}个",cases.size());
|
||||
LogUtil.APP.info("当前计划【{}】中共有【{}】条待测试用例...",task.getTaskName(),cases.size());
|
||||
LogOperation.updateTaskExecuteStatus(taskId, cases.size());
|
||||
|
||||
for (ProjectCase testcase : cases) {
|
||||
|
|
|
@ -6,6 +6,7 @@ import java.util.concurrent.ThreadPoolExecutor;
|
|||
import java.util.concurrent.TimeUnit;
|
||||
|
||||
import luckyclient.dblog.LogOperation;
|
||||
import luckyclient.publicclass.LogUtil;
|
||||
import luckyclient.serverapi.api.GetServerAPI;
|
||||
import luckyclient.serverapi.entity.ProjectCase;
|
||||
|
||||
|
@ -45,6 +46,7 @@ public class BatchTestCaseExecution {
|
|||
}
|
||||
}else{ //批量执行用例
|
||||
String[] temp=batchcase.split("\\#");
|
||||
LogUtil.APP.info("当前批量执行任务中共有【{}】条待测试用例...",temp.length);
|
||||
for(int i=0;i<temp.length;i++){
|
||||
TestControl.THREAD_COUNT++; //多线程计数++,用于检测线程是否全部执行完
|
||||
threadExecute.execute(new ThreadForBatchCase(projectname,Integer.valueOf(temp[i]),taskid));
|
||||
|
|
|
@ -109,6 +109,7 @@ public class TestControl {
|
|||
new ArrayBlockingQueue<Runnable>(1000), new ThreadPoolExecutor.CallerRunsPolicy());
|
||||
|
||||
List<ProjectCase> cases = GetServerAPI.getCasesbyplanId(taskScheduling.getPlanId());
|
||||
LogUtil.APP.info("当前计划【{}】中共有【{}】条待测试用例...",task.getTaskName(),cases.size());
|
||||
LogOperation.updateTaskExecuteStatus(taskid, cases.size());
|
||||
int casepriority = 0;
|
||||
for (int j = 0; j < cases.size(); j++) {
|
||||
|
|
|
@ -110,7 +110,7 @@ public class WebTestControl {
|
|||
LogOperation caselog = new LogOperation();
|
||||
|
||||
List<ProjectCase> cases = GetServerAPI.getCasesbyplanId(taskScheduling.getPlanId());
|
||||
LogUtil.APP.info("当前计划中读取到用例共【{}】个",cases.size());
|
||||
LogUtil.APP.info("当前计划【{}】中共有【{}】条待测试用例...",task.getTaskName(),cases.size());
|
||||
LogOperation.updateTaskExecuteStatus(taskid, cases.size());
|
||||
|
||||
for (ProjectCase testcase : cases) {
|
||||
|
|
Loading…
Reference in New Issue