Hi,
We currently have a massive testsuite and would like to limit the amount of XML/HTML reporting that goes on. In particular, I would like to remove the HTML/XML report writing, but keeping the console output that shows which methods were passed, failed skipped (see below):
[testng] FAILED: MethodA
[testng] PASSED: MethodB
[testng] SKIPPED: MethodC
I know I can disable the default reporting listeners by using the useDefaultListeners flag, but doing so stops the output above from showing up.
Thanks.