How to Add a Category to All NUnit Tests in a Project

In NUnit we can use the category attribute to classify tests. This allows us to mark long running tests and then tell our test runner to run them on demand but not with the regular test run. All we need to do is to add a category to a single test (or a class):

Read more