-
Notifications
You must be signed in to change notification settings - Fork 261
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
Adapter is not sending TestCategory traits in testcase object to testhost. #189
Comments
This is working in VS IDE. Strange it isn't in trx. The adapter does not differentiate these two scenarios. Need to investigate this one. |
Platform searches for TestProperty in list of properties by Id. This Id has changed for MSTestV2. That is the reason neither TPV1 nor TPV2 are able to find TestCategory properties. |
@jayaranigarg any idea why the id was changed for MSTestv2? Just curious.. |
@codito: Ah that was just to be consistent with the executor uri which has the v2 in it. |
…icrosoft#189) * Updated version of TestHost package in Microsoft.NET.TestSdk.nuspec * Updated title.
Description
.trx file generated by dotnet test don't have test categories information
Steps to reproduce
Create a test project with test methods annotated with [TestCategory("foo")].
Run dotnet test --logger "trx"
Expected behavior
.trx file with test categories information
Actual behavior
.trx file without test categories information
Environment
Windows 10 Pro 1607
MSTest.TestAdapter 1.1.17
MSTest.TestFramework 1.1.17
dotnet version 1.0.4
The text was updated successfully, but these errors were encountered: