Not running specific tests

Not running specific tests

I want to know the coverage of my tests for the Domain Model, Database and Business Logic all separately. Right now they are all in the same unit test dll. Is the solution to seperate them into different dll's or is there a way with unit test categories or something like that?


RE: Not running specific tests

You can use the Fixture option of nUnit or you can use the //et flag for ncover.

http://www.ncover.com/documentation/console/profilingoptions#et

You would run two different tests, passing in a regular expression of the namespaces to ignore.

There is no need to split out your assemblies.

Does this help?

Thank you,

Support