Lets have JUnit5 test:
....
public class SomeClass {
@ParameterizedTest
@MethodSource(...)
void test(...) {}
}
we can run it via maven:
mvn -Dtest=SomeClass test
but how to run it, via maven, if I want to run only i-th ‘instance’ (or how it’s called)? I.e. I don’t want to run all tests for all parameters, just 1 test run for one specific parameter set.