You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The group name as test class package prefix was introduced to let Testng sort tests by paxml group for the order of execution. However this couples the group name into test case name, which would break some testng statistics if the group name is changed (e.g. Jenkins).
To manipulate the test execution order, an alternative is to implement testng's IMethodInterceptor to do the sorting.
The <parameter name="paxmlTestNamePrefixWithPid" value="true" /> workaround is no longer needed.
The text was updated successfully, but these errors were encountered:
The group name as test class package prefix was introduced to let Testng sort tests by paxml group for the order of execution. However this couples the group name into test case name, which would break some testng statistics if the group name is changed (e.g. Jenkins).
To manipulate the test execution order, an alternative is to implement testng's IMethodInterceptor to do the sorting.
The
<parameter name="paxmlTestNamePrefixWithPid" value="true" />
workaround is no longer needed.The text was updated successfully, but these errors were encountered: