Closed
Description
duplicate test names are not shown differently in test navigator.
static Stream<Arguments> f(){
return null;
}
@ParameterizedTest
@MethodSource("f")
void foo(int a){
fail();
}
@Test
void foo(){
// Pass
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment