Forum Discussion
nmrao
9 years agoCommunity Hero
Would you mind showing the respective code?
AndreiN1
9 years agoOccasional Contributor
public void test() {
SoapUIProSecurityRunner runner = new CustomSecurityRunner();
runner.setEndpoint(endpoint);
// just load the properties need to run the test
setupProperties(runner);
runner.setProjectFile(pathToFile);
runner.setPrinReport(true);
runner.run();
}
The CustomSecurityRunner extends the SoapUIProSecurityRunner and overrides the printReport() and afterRun methods.
Hope this helps