我有一个使用 Jmeter 的场景。
我已将 Junits 注入 Jmeter。
Junit 看起来像:
public class class1 extends class2{
@org.junit.Test
public void method1(){
String s;
method2();
s = props.getProperty("some_Property_name");
}
------second Class -------
public class class2 {
public Properties props = new Properties();
method2(){
// props get loaded here and stores some values
}
}
我创建了
=> 线程组 1,类名 - class1 和 testMethod = method2。这将加载道具。
第二:
=> Thread Group2 with classname = class1 and testMethod = method1 使用 props 值。
运行 Jmeter 时,运行 Thread group2 时 props 为 null。
有人可以帮我吗?