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 } ```