How to execute method-ordered class template invocations in parallel? #5023
-
Hi all. I'm in the process of migration from 5.11.3 to 6.0.0 right now, and I'm trying to implement class templates instead of test class inheritance. The issue I have with class templates is when a test class is annotated with |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Currently, I think the only way is to annotate the class with |
Beta Was this translation helpful? Give feedback.
Currently, I think the only way is to annotate the class with
@Execution(CONCURRENT)
and each test method with@Execution(SAME_THREAD)
. However, I also think that's needlessly restrictive and we should relax that. Could you please raise an issue?