I am currently running my test suit using this XML file:
<suite name="something"> <test name="generic valid compilation"> <parameter name="isValid" value="true"/> <parameter name="testGroup" value="generic"/> <groups> <run> <include name="compilation"></include> <exclude name="module"></exclude> <exclude name="refinement"></exclude> <exclude name="specifications"></exclude> </run> </groups> <classes> <class name="test.TestLauncher"/> </classes> </test> </suite>
and I'm looking for a way to disable the created test folder, which TestNG apparently runs by default. From http://reportng.uncommons.org/ I see that
You can also disable TestNG resellers by default by setting the useDefaultListeners attribute "False".
which seems to fit my needs, would it not be a fact that their XML structure seems different from mine.
Does anyone know how to disable test output files using TestNG?
thanks
source share