When running NUnit and specifying a category, can all uncategorized tests be included too?
问题 We have several hundred test classes, with a few dozen of them marked with the following attributes: [TestFixture] [Explicit] [Category("IntegrationTests")] so they will only be run in our over-night automated build. The remaining TestFixtures don't have a Category specified (and are not marked Explicit either). Here is the NAnt task we are running to execute our tests: <nunit2> <test> ... <categories> <include name="IntegrationTests" /> </categories> ... </test> </nunit2> This, of course,