TestWatcher vs TestExecutionListener #3994
-
Please give an explanation when it is better to use one or the other option. At first glance it looks like listener replaces watcher completely and also has additional features. |
Beta Was this translation helpful? Give feedback.
Answered by
marcphilipp
Sep 16, 2024
Replies: 1 comment
-
|
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
wazzeps
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
TestWatcher
is Jupiter-specific and should be used whenever you want to react based on the outcome of a test (e.g. in combination with another extension point) or change its behavior.TestExecutionListener
is a Platform concept and cannot influence the outcome of a test or interact with Jupiter extensions.