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

MSTest parameterized test data #20

Closed
Siphonophora opened this issue May 25, 2021 · 0 comments · Fixed by #21
Closed

MSTest parameterized test data #20

Siphonophora opened this issue May 25, 2021 · 0 comments · Fixed by #21

Comments

@Siphonophora
Copy link
Contributor

Based on spekt/junit.testlogger#42 we determined that parameterized test data is passed in the display name, not the fully qualified name. For example:

        [DataTestMethod]
        [DataRow(true)]
        [DataRow(false)]
        public async Task Some_Test_Method(bool result)
        {
        }

Provides: FullyQalifiedName = TestProject1.UnitTest1.Some_Test_Method in my test project and a DisplayName = Some_Test_Method (True)

We need a new ITestAdapter to fix this

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant