Reputation: 6786
If I want to combine unit and integration tests in a single test project. How do I make sure that I'll be able run only unt tests subset during CI automated builds?
Upvotes: 1
Views: 143
Reputation: 229
You could annotate each test [TestCategory("Unit")] or [TestCategory("Integration")].
It would be nice to compile the project to two dlls but I don't know a way.
Upvotes: 4