Should I mix my UnitTests and my Integration tests in the same project? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T08:31:36Z http://stackoverflow.com/feeds/question/371738 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/371738/should-i-mix-my-unittests-and-my-integration-tests-in-the-same-project 5 Should I mix my UnitTests and my Integration tests in the same project? Fadeproof 2008-12-16T16:01:02Z 2009-02-27T21:03:01Z <p>I am using NUnit to test my c# code and have so far been keeping unittests (fast running ones) and integration tests (longer running) seperate and in separate project files. I use nunit for doing both the unittests and the integration tests. I just noticed the category attribute <a href="http://www.nunit.org/index.php?p=category&amp;r=2.2" rel="nofollow">http://www.nunit.org/index.php?p=category&amp;r=2.2</a> that nunit provides so that tests can be categorized. This begs the question weather I should mix them together and simply use the category attribute to distinguish between them?</p> http://stackoverflow.com/questions/371738/should-i-mix-my-unittests-and-my-integration-tests-in-the-same-project/371750#371750 0 Answer by Alex Fort for Should I mix my UnitTests and my Integration tests in the same project? Alex Fort 2008-12-16T16:03:24Z 2009-02-27T21:03:01Z <p>I would keep with whatever method you're currently using. It's more of an opinion thing, and you wouldn't want to have to re-tool your whole testing method.</p> http://stackoverflow.com/questions/371738/should-i-mix-my-unittests-and-my-integration-tests-in-the-same-project/371756#371756 0 Answer by gef for Should I mix my UnitTests and my Integration tests in the same project? gef 2008-12-16T16:06:30Z 2008-12-16T16:06:30Z <p>Yes I keep them together &amp; use the category code, and I also use the checkboxes in nUnit (View->Tree->Show Checkboxes).</p> <p>You could also mock out your integration testing if you have oodles of time :)</p> http://stackoverflow.com/questions/371738/should-i-mix-my-unittests-and-my-integration-tests-in-the-same-project/371761#371761 5 Answer by Steven A. Lowe for Should I mix my UnitTests and my Integration tests in the same project? Steven A. Lowe 2008-12-16T16:07:31Z 2008-12-16T16:07:31Z <p>if it is not too difficult to separate them, do so now</p> <p>unit tests should be run early and often (e.g. every time you change something, before check-in, after check-in), and should complete in a short time-span.</p> <p>integration tests should be run periodically (daily, for example) but may take significant time and resources to complete</p> <p>therefore it is best to keep them separate</p> http://stackoverflow.com/questions/371738/should-i-mix-my-unittests-and-my-integration-tests-in-the-same-project/371764#371764 1 Answer by krosenvold for Should I mix my UnitTests and my Integration tests in the same project? krosenvold 2008-12-16T16:08:05Z 2008-12-16T16:08:05Z <p>I find that using separate projects for unit test and integration tests tends to create a little too many top level artifacts in the projects. Even though we're TDD and all, I still think the code being developed should be deserving at least half of the top-level of my project structure.</p> http://stackoverflow.com/questions/371738/should-i-mix-my-unittests-and-my-integration-tests-in-the-same-project/371771#371771 0 Answer by Calamitous for Should I mix my UnitTests and my Integration tests in the same project? Calamitous 2008-12-16T16:10:20Z 2008-12-16T16:10:20Z <p>seperate them if possible, because integration tests normally take much longer than UnitTests. Maybe your project grows and you end up with very much tests, all which take a short amount of time - except the integration tests - and you want to run your UnitTests as often as possible... </p> http://stackoverflow.com/questions/371738/should-i-mix-my-unittests-and-my-integration-tests-in-the-same-project/371792#371792 0 Answer by dr. evil for Should I mix my UnitTests and my Integration tests in the same project? dr. evil 2008-12-16T16:15:42Z 2008-12-16T16:15:42Z <p>I don't think it really matters that much but separating them sounds like a better idea, since isolation, automation will be so easier. And category feature is nice but not that good from usability point of view.</p> http://stackoverflow.com/questions/371738/should-i-mix-my-unittests-and-my-integration-tests-in-the-same-project/379833#379833 0 Answer by Mike Two for Should I mix my UnitTests and my Integration tests in the same project? Mike Two 2008-12-19T00:53:46Z 2008-12-19T00:53:46Z <p>The original motivation behind [Category] was to solve the problem you mention. It was also intended to create broader test suites but that is kind of what you are doing.</p> <p>Do be careful with [Category]. Not all test runners support it the same way the NUnit gui does (or did, I haven't upgraded in a while). In the past some runners would ignore the attribute if it was on the class itself or just ignore it all together. Most seem to work now.</p>