Extension Support for Suites #4157
Replies: 2 comments
-
The test lifecycle extension APIs you are referring to belong to the JUnit Jupiter extension model. Whereas, And... there is no cross-pollination between the Jupiter and Suite engines. In other words, Jupiter doesn't know it's being run in a suite, and the suite engine does not know anything about (or have any mechanism to integrate with) the Jupiter extension model. Hopefully that answers your question. Though, you may also be "proposing something in the form of a question". 😉 If so, what exactly are you proposing? |
Beta Was this translation helpful? Give feedback.
-
Just thinking out loud, #2816 would allow creating resources in |
Beta Was this translation helpful? Give feedback.
-
At the moment you can intercept etc. all the parts of the life cycle of tests via the extension mechnism very nicely (for example
BeforeTestExecutionCallback
etc.), but unfortunately the existing suite parts do not have such support yet?Beta Was this translation helpful? Give feedback.
All reactions