I can't find any ressources explaining what exactly the difference between BeforeEachCallback
and BeforeTestExecutionCallback
in the JUnit Jupiter extension model is. (I am of course also interested in the "After"-variants)
To my understanding, the following timeline describes what is happening:
BeforeEach
- BeforeTestExecution
- Actual execution of the test
- AfterTestExecution
- AfterEach
I suppose that BeforeTestExecution
exists so you can execute code after all the BeforeEach
callbacks have been worked on but before the actual test execution. However this is still unclear to me, because everyone could just use BeforeTestExecution
instead of BeforeEach
and the order of execution of these callbacks is random again.
So what is BeforeTestExecution
exactly for and what happens if you use this callback in multiple extensions at the same time?