You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 12, 2017. It is now read-only.
public class SmokeTestAttribute : CategoryTraitAttribute
{
public SmokeTestAttribute() : base("Smoke") { }
}
and I am using it as
[Fact(DisplayName = "User should be able to login")]
[SmokeTest]
public void UserShouldSignIn()
When I am selecting Group by: Category in R# Unit Test Explorer I see all of the tests as <Uncategorised> (xx tests).
However, in VS Test Explorer I can see Category [Smoke] (xx) and No Traits (yy)
Details:
VS: 2015 Professional Update 3
R#: 10.0.2 Ultimate
Xunit: 2.1.0
The issue:
I have got custom attribute like
and I am using it as
When I am selecting
Group by: Categoryin R# Unit Test Explorer I see all of the tests as<Uncategorised> (xx tests).However, in VS Test Explorer I can see
Category [Smoke] (xx)andNo Traits (yy)