Grief Coder
Grief Coder

Reputation: 6786

Having unit and integration tests in one project

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

Answers (1)

pellucid
pellucid

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

Related Questions