-1

我有一个使用 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。
有人可以帮我吗?

4

1 回答 1

0

找到上述问题的解决方案。我们需要在 class2 中将 props 声明为 static,以便它只维护一个 props 副本。

于 2013-06-19T09:52:05.940 回答