We use MS Test's test categories extensively to define the types of test we'd like to run.
For example:
[TestCategory("Smoke"), TestMethod]
[TestCategory("Unit"), TestMethod]
[TestCategory("Integration"), TestMethod]
I'd love to be able to have NCrunch run all tests in the Categories of "Smoke" and "Unit."
Thanks!
Ed