Hi
I have a Maven project with multiple modules which are inter-dependent.
When I trigger a test in one of the modules, example - api-automation, testng does not create anything in test-output.
I am using another reporting tool called Extent report, which does create a test report.
But I am using ITestListener and IResultListener implementation to capture the ITestResult for Extent report.
I expect testNg to create the default output files like index.html, which it's not doing, how do I get this to happen?
My testng dependency:
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>6.9.5</version>
</dependency>
Module structure:
<modules>
<module>automation-framework</module>
<module>automation-core</module>
<module>automation-service</module>
<module>automation-trigger</module>
<module>api-automation</module>
<module>app-automation</module>
<module>web-automation</module>
</modules>