How to make Junit 5 pause other threads and execute just one specfic test class
I expected adding @Execution(ExecutionMode.SAME_THREAD)
to work but it doesn’t. Other tests run in parallel. Is there some annotation to synchronize test threads and make them actually wait?
How to make Junit 5 pause other threads and execut just one specfic test class
I expected adding @Execution(ExecutionMode.SAME_THREAD)
to work but it doesn’t. Other tests run in paralel. Is there some annotation to synchronize test threads and make them actually wait?