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
While the testng.useDefaultListeners configuration parameter can be used to selectively register TestNG's default listeners, custom listeners can currently only be registered via ServiceLoader. However, that's global and doesn't support registering them for a particular test run. Hence, a new testng.listeners configuration parameter should be introduced that contains a comma-separated list of fully qualified class names of listeners that should be registered.
The text was updated successfully, but these errors were encountered:
The new `testng.listeners` configuration parameter now allows to
register custom listeners as a comma-separated list of fully-qualified
class names.
Fixes#5.
The new `testng.listeners` configuration parameter now allows to
register custom listeners as a comma-separated list of fully-qualified
class names.
Fixes#5.
The new `testng.listeners` configuration parameter now allows to
register custom listeners as a comma-separated list of fully-qualified
class names.
Fixes#5.
While the
testng.useDefaultListeners
configuration parameter can be used to selectively register TestNG's default listeners, custom listeners can currently only be registered viaServiceLoader
. However, that's global and doesn't support registering them for a particular test run. Hence, a newtestng.listeners
configuration parameter should be introduced that contains a comma-separated list of fully qualified class names of listeners that should be registered.The text was updated successfully, but these errors were encountered: