Details
-
Improvement
-
Status: Closed
-
Major
-
Resolution: Fixed
-
None
-
None
-
Patch
Description
Version 5.9 of TestNG added the -testrunfactory command line option for registering a custom test runner factory. The Maven Surefire Plugin should support this option.
Ideally, one should be able to specify the option in the Surefire configuration of their project's pom.xml file.
<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <properties> <property> <name>testrunfactory</name> <value>org.example.CustomTestRunnerFactory</value> </property> </properties> </configuration> </plugin>