这就是我想要实现的目标
public class Jmetertest extends AbstractJavaSamplerClient {
public void setupTest(JavaSamplerContext context) {
TestConfig.load(System.getProperty("configFile"));
// This configFile has all the properties which I need to run my test
}
public void teardownTest(JavaSamplerContext context) {..}
public SampleResult runTest(JavaSamplerContext context) {
// test code
}
}
我知道我可以使用,
public Arguments getDefaultParameters() {..}
但我想知道,如何在jmeter中访问System.getProperty();
,以便我可以使用对我来说更方便的任何内容。
答案 0 :(得分:0)
public void setUp()
{
testFile1 =
new File(
System.getProperty("user.dir") + "/testfiles",
我认为此链接可以帮助您: java.lang.System.getProperty