Skip to content
New issue

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 Report gives no indication of a test being a Parameterized Test #1223

Closed
leogott opened this issue Jun 27, 2021 · 1 comment
Closed

Comments

@leogott
Copy link

leogott commented Jun 27, 2021

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
grafik

vscode 1.57.1
java-test 0.30.0
java adapt-openjdk 8
junit jupiter 5.7.0 via maven
system windows with WSL

@jdneo
Copy link
Member

jdneo commented Jun 28, 2021

dup with #954

@jdneo jdneo closed this as completed Jun 28, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants