Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
2.18.1
-
None
Description
Because of Surefire is using deprecated TestNG.configure(Map) method, parameter "suitethreadpoolsize" value is not read by TestNG. And so test suites can not be run in parallel. This parameter is read only in TestNG.configure(CommandLineArgs) method.
/**
- This method is invoked by Maven's Surefire to configure the runner,
- do not remove unless you know for sure that Surefire has been updated
- to use the new configure(CommandLineArgs) method.
* - @deprecated use new configure(CommandLineArgs) method
*/
@Deprecated
public void configure(Map cmdLineArgs) {
....