在JMeter中是否可以创建或运行Maven / TestNG java项目?如果可以,我们如何实现?
iqih9akk1#
“运行”是什么意思?两者都可以使用操作系统进程采样器执行,请查看How to Run External Commands and Programs Locally and Remotely from JMeter文章了解更多详细信息。此外,可以使用JSR223测试元素以编程方式执行TestNG,如
import org.testng.* TestListenerAdapter tla = new TestListenerAdapter() TestNG testng = new TestNG() testng.setTestClasses(new Class[] { Run2.class }) testng.addListener(tla) testng.run();
1条答案
按热度按时间iqih9akk1#
“运行”是什么意思?两者都可以使用操作系统进程采样器执行,请查看How to Run External Commands and Programs Locally and Remotely from JMeter文章了解更多详细信息。
此外,可以使用JSR223测试元素以编程方式执行TestNG,如