I am using NUnit to test my c# code and have so far been keeping unittests (fast running ones) and integration tests (longer running) seperate and in separate project files. I use nunit for doing both the unittests and the integration tests. I just noticed the category attribute http://www.nunit.org/index.php?p=category&r=2.2 that nunit provides so that tests can be categorized. This begs the question weather I should mix them together and simply use the category attribute to distinguish between them?