gpt4 book ai didi

java - JMeter JunitSampler 无法找到带有字符串参数的构造函数

转载 作者:行者123 更新时间:2023-12-02 03:37:16 24 4
gpt4 key购买 nike

我正在研究命令行工具的性能测试。我已经使用 Junit 编写了一个集成测试来测试整个命令行工具,我想重用它来监控性能。

我正在使用 JUnit Request Sampler,但由于错误而无法启动测试。

2016/05/18 16:22:36 INFO - jmeter.protocol.java.sampler.JUnitSampler: Trying to find constructor with one String parameter returned error: org.someorg.integration.IntegrationTest.<init>(java.lang.String)

我看到了this我的测试中没有设置或拆卸。想想我可能错过了什么?

最佳答案

我也遇到了同样的问题。我用两个构造函数解决了这个问题:

  • 标准空的
  • 一个“虚拟”,一个接受一个字符串,调用另一个

像这样:

public MyTestClass() {
// Do nothing
}

public MyTestClass(String test) {
this();
}

此后 JMeter 不再提示。有点奇怪,但如果它有效的话......作为副作用,测试将不再在 Eclipse 中运行,因此我创建了两个版本的测试类:

  • 一个用于 Eclipse
  • 一个用于 JMeter 的 JAR

关于java - JMeter JunitSampler 无法找到带有字符串参数的构造函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37304227/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com