We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Java Test currently does not display individual executions of parameterized tests or the number of executions.
#667 is related, but this Issue here can probably solved more quickly?
With a class like
public class SimpleTest { @ParameterizedTest @ValueSource(strings={"apple", "banana"}) void (String value) { assertTrue(true); } }
I'd expect an output like:
1 testAnotherThing 2 testAnotherThing
or
testAnotherThing (2/2)
and not
vscode 1.57.1 java-test 0.30.0 java adapt-openjdk 8 junit jupiter 5.7.0 via maven system windows with WSL
The text was updated successfully, but these errors were encountered:
dup with #954
Sorry, something went wrong.
No branches or pull requests
Java Test currently does not display individual executions of parameterized tests or the number of executions.
#667 is related, but this Issue here can probably solved more quickly?
With a class like
I'd expect an output like:
1 testAnotherThing
2 testAnotherThing
or
testAnotherThing (2/2)
and not
vscode 1.57.1
java-test 0.30.0
java adapt-openjdk 8
junit jupiter 5.7.0 via maven
system windows with WSL
The text was updated successfully, but these errors were encountered: