Hello guys I am exploring possibility to generate separate testng-results.xml files per suite inside of the parent suite.
Here is the example of the parent test suite, it contains 3 child test suites:
<suite name="Regression parallel" verbose="1">
<suite-files>
<suite-file path="regression_1.xml"/>
<suite-file path="regression_2.xml"/>
<suite-file path="regression_3.xml"/>
</suite-files>
</suite>
I would like to generate separate testng-results.xml file per each child suite, so after execution, I would like to have 3 separate .xml results files, for example
testng-results-regression_1.xml
testng-results-regression_2.xml
testng-results-regression_3.xml
Instead of just one testng-results.xml
Does testNG support something like this out of the box?
And if not, I would really appreciate some guidelines.
Cheers!
Bojan