We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The JUnit Platform launcher does not like it if an empty array of listeners is registered:
https://github.com/junit-team/junit5/blob/0a552398fa6a87ec1a492b4b023ab7f6367618e7/junit-platform-launcher/src/main/java/org/junit/platform/launcher/core/ListenerRegistry.java#L72-L77
But we call this method (indirectly) with a possibly empty array:
citrus/runtime/citrus-junit5/src/main/java/org/citrusframework/junit/jupiter/JUnitJupiterEngine.java
Line 87 in e9f6947
We should only execute this call if the list of listeners is non-empty.
This fix is necessary to fix citrusframework/citrus-remote#21.
The text was updated successfully, but these errors were encountered:
citrusframework#1288: only register listeners when the list of listen…
e69123b
…ers is not empty. This is necessary, otherwise the junit platform launcher will throw an exception (see https://github.com/junit-team/junit5/blob/0a552398fa6a87ec1a492b4b023ab7f6367618e7/junit-platform-launcher/src/main/java/org/junit/platform/launcher/core/ListenerRegistry.java#L72-L77)
aa2028c
#1288: only register listeners when the list of listeners is not empty.
1776da0
This is necessary, otherwise the junit platform launcher will throw an exception (see https://github.com/junit-team/junit5/blob/0a552398fa6a87ec1a492b4b023ab7f6367618e7/junit-platform-launcher/src/main/java/org/junit/platform/launcher/core/ListenerRegistry.java#L72-L77)
Successfully merging a pull request may close this issue.
The JUnit Platform launcher does not like it if an empty array of listeners is registered:
https://github.com/junit-team/junit5/blob/0a552398fa6a87ec1a492b4b023ab7f6367618e7/junit-platform-launcher/src/main/java/org/junit/platform/launcher/core/ListenerRegistry.java#L72-L77
But we call this method (indirectly) with a possibly empty array:
citrus/runtime/citrus-junit5/src/main/java/org/citrusframework/junit/jupiter/JUnitJupiterEngine.java
Line 87 in e9f6947
We should only execute this call if the list of listeners is non-empty.
This fix is necessary to fix citrusframework/citrus-remote#21.
The text was updated successfully, but these errors were encountered: