use of com.axway.ats.log.report.model.RunWrapper in project ats-framework by Axway.
the class Test_ReportFormatter method createRun.
private RunWrapper createRun() {
RunWrapper run = new RunWrapper();
run.productName = "product";
run.versionName = "version";
run.buildName = "build";
run.os = "os";
run.scenariosTotal = 1;
Suite suite = new Suite();
suite.scenariosTotal = 1;
run.addSuite(new SuiteWrapper(suite));
return run;
}
Aggregations