I'm trying to perform a parametrized JUnit 5 test, how to accomplish the following?
@ParametrizedTest
@ValueSource //here it seems only one parameter is supported
public void myTest(String parameter, String expectedOutput)
I know I could use @MethodSource
but I was wondering if in my case I just need to understand better @ValueSource
.