Is there a way to use @RepeatedTest annotation alongside with @TestTemplate?
The objective is to run test multiple times for each type of Dependency, which is injected by an Extension class.
@TestTemplate
@RepeatedTest(100)
@Timeout(1)
void test(final Dependency dep) throws Exception {
....
}
