I have run the Jmeter Script using Jmeter dependency in eclipse using Java code, fortunately, my script is running fine but now I\'m unable to store the result for the same. Can
I have solved it by myself..
if (summariserName.length() > 0) {
summer = new Summariser(summariserName);
}
String logFile = "D:/apache-jmeter-5.1.1/extras/resultss.xml";
ResultCollector logger = new ResultCollector(summer);
logger.setFilename(logFile);
testPlanTree.add(testPlanTree.getArray()[0], logger);
You need to add a ResultCollector instance to your Test Plan in order to get the .jtl file written like:
ResultCollector collector = new ResultCollector();
collector.setFilename("result.jtl");
testPlanTree.add(testPlanTree.getArray()[0], collector);
the code needs to be added before the jmeter.configure(testPlanTree);
line
More information: