Where to place unit test project
- by Karsten
I'm thinking about where to put the unit/integration test project. I follow the 1 test project pr. project convention
I can think of 3 ways, that all seems good to me, which make it kind of hard to choose :-)
Test project is put under a Tests sub folder to the project it tests.
Test project is put next to the project it tests, in a "project".Tests folder. I believe this is what Roy Osherove recommends.
Put all test projects in a sub folder in the root. e.g. \Tests\"project".Tests
Something else?
What you choose and why?