I\'m making the transition from NUnit to XUnit (in C#), and I was writing some \"Integrated Tests\" (ITs) that I don\'t necessarily want the test runner to run as part of my aut
You can use the [Trait] attribute for that, like in the xunit example, e.g.,
[Trait]
[Trait ("Category", "Integration")]
This project takes it a little further and inherits categories like unit, integration, etc.