在我的程序中,我有一个包含 n 个测试脚本的列表,我需要迭代该列表并并行运行 3 个测试脚本。为了完成这个任务,我创建了一个大小为 3 的线程池。我的线程池实现如下所示
ExecutorService executor = Executors.newFixedThreadPool(3);
for (int threadpoolCount = 0; threadpoolCount < classNames.size(); threadpoolCount++) {
Runnable worker = new ProcessRunnable(classNames.get(threadpoolCount));
executor.execute(worker);
}
executor.shutdown();
while (!executor.isTerminated()) {
}
System.out.println("Finished all threads");
下面是我的线程实现,我在其中执行一个带有 maven 命令的批处理文件
public void run() {
try {
System.out.println(testname);
System.out.println("Task ID : " + this.testname + " performed by " + Thread.currentThread().getName());
Process p = Runtime.getRuntime().exec("cmd /C Junit_runner.bat" + " " + testname);
p.waitFor();
Thread.sleep(5000);
} catch (IOException e) {
e.printStackTrace();
} catch (InterruptedException e) {
e.printStackTrace();
}
}
这是我在控制台中得到的(我没有启动命令提示符并在后台运行它)
com.selenium.test.testname1 任务 ID:com.selenium.test.testname1 由 pool-1-thread-1 执行
com.selenium.test.testname1 任务 ID:com.selenium.test.testname2 由 pool-1-thread-2 执行
com.selenium.test.testname1 任务 ID:com.selenium.test.testname3 由 pool-1-thread-3 执行
执行在这里暂停,它没有做任何事情,我不确定后面发生了什么。我还交叉检查了批处理文件是否工作正常。