If you have the following:
[TestFixture]
public class SuccessTests
{
[Test]
[Category("Long")]
public void VeryLongTest()
{ /* ... */ }
}
How can you - from within VS Test Explorer, or as part of a build config - run only those tests marked as belonging to the "Long" category?