Should I mix my UnitTests and my Integration tests in the same project? - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T08:31:36Zhttp://stackoverflow.com/feeds/question/371738http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/371738/should-i-mix-my-unittests-and-my-integration-tests-in-the-same-project5Should I mix my UnitTests and my Integration tests in the same project?Fadeproof2008-12-16T16:01:02Z2009-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&r=2.2" rel="nofollow">http://www.nunit.org/index.php?p=category&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#3717500Answer by Alex Fort for Should I mix my UnitTests and my Integration tests in the same project?Alex Fort2008-12-16T16:03:24Z2009-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#3717560Answer by gef for Should I mix my UnitTests and my Integration tests in the same project?gef2008-12-16T16:06:30Z2008-12-16T16:06:30Z<p>Yes I keep them together & 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#3717615Answer by Steven A. Lowe for Should I mix my UnitTests and my Integration tests in the same project?Steven A. Lowe2008-12-16T16:07:31Z2008-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#3717641Answer by krosenvold for Should I mix my UnitTests and my Integration tests in the same project?krosenvold2008-12-16T16:08:05Z2008-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#3717710Answer by Calamitous for Should I mix my UnitTests and my Integration tests in the same project?Calamitous2008-12-16T16:10:20Z2008-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#3717920Answer by dr. evil for Should I mix my UnitTests and my Integration tests in the same project?dr. evil2008-12-16T16:15:42Z2008-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#3798330Answer by Mike Two for Should I mix my UnitTests and my Integration tests in the same project?Mike Two2008-12-19T00:53:46Z2008-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>