Package kg.apc.jmeter

Examples of kg.apc.jmeter.PluginsCMDWorker.doJob()


                fileName += ".csv"; //$NON-NLS-1$
                worker.setOutputCSVFile(fileName); //$NON-NLS-1$
                worker.addExportMode(PluginsCMDWorker.EXPORT_CSV);
            }
            worker.setPluginType(pluginType);
            int status = worker.doJob();
            if (status == 0) {
                log.info("Successful generation of file " + fileName + " by plugin:" + pluginType);
            } else {
                log.error("Error generating file " + fileName + " by plugin:" + pluginType);
            }
View Full Code Here


            } else {
                worker.processUnknownOption(nextArg, args);
            }
        }

        return worker.doJob();
    }
}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.