Forum Discussion
Itam_Media
15 years agoContributor
I don't think your fix will work correctly because you have this in the SoapUITestCaseRunner class
So
i) When the setJUnitReport(true) gets called, the reportCollector will become the default one which is not the behavior we want
ii) Once i) is taken care of, can you also make sure that the same custom reportCollector gets used all through the execution. Currently I have a feeling that it is only using the custom reportCollector for the first row of data and then going back to the default JUnitReportCollector (this is my guess based on the behavior that I am seeing).
Would apprecatiate your comments/fixes for my concerns above.
Thanks
-- Sang
public void setJUnitReport(boolean junitReport)
{
this.junitReport = junitReport;
if(junitReport)
reportCollector = new JUnitReportCollector();
}
So
i) When the setJUnitReport(true) gets called, the reportCollector will become the default one which is not the behavior we want
ii) Once i) is taken care of, can you also make sure that the same custom reportCollector gets used all through the execution. Currently I have a feeling that it is only using the custom reportCollector for the first row of data and then going back to the default JUnitReportCollector (this is my guess based on the behavior that I am seeing).
Would apprecatiate your comments/fixes for my concerns above.
Thanks
-- Sang