Nunit SetUpFixture Never Runs - Stack Overflow [closed]most recent 30 from stackoverflow.com2009-12-02T08:25:27Zhttp://stackoverflow.com/feeds/question/41858http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/41858/nunit-setupfixture-never-runs2Nunit SetUpFixture Never Runs [closed]John2008-09-03T14:55:43Z2008-09-03T15:12:33Z
<p>I have just started to use Nunit 2.4.8.0 (latest version at this time) with much success.</p>
<p>I am now at the point where I am trying to implement a SetUpFixture as described on the <a href="http://www.nunit.org/index.php?p=setupFixture&r=2.4.2" rel="nofollow">NUnit Documentation</a> to span multiple unit tests. This however never seems to run and in turn all my tests fail. </p>
<p>I am using the GUI tool provided to execute the tests.</p>
<p>Am I missing something?</p>
http://stackoverflow.com/questions/41858/nunit-setupfixture-never-runs/41876#418760Answer by Greg Hurlman for Nunit SetUpFixture Never RunsGreg Hurlman2008-09-03T15:05:30Z2008-09-03T15:05:30Z<p>There are a few restrictions on a class that is used as a setup fixture.</p>
<ul>
<li>It must be a publicly exported type or NUnit will not see it.</li>
<li>It must have a default constructor or NUnit will not be able to construct it.</li>
</ul>
<p>(show us your code)</p>
http://stackoverflow.com/questions/41858/nunit-setupfixture-never-runs/41883#418833Answer by John for Nunit SetUpFixture Never RunsJohn2008-09-03T15:07:44Z2008-09-03T15:07:44Z<p>Turns out that in the options screen you must set the <em>Test Structure</em> option to Automatic Namespace and not Flat List of Test Fixtures.</p>
<p>Issue Resolved.</p>
http://stackoverflow.com/questions/41858/nunit-setupfixture-never-runs/41897#418970Answer by John Sibly for Nunit SetUpFixture Never RunsJohn Sibly2008-09-03T15:12:33Z2008-09-03T15:12:33Z<blockquote>
<p>span multiple unit tests</p>
</blockquote>
<p>Do you mean spanning multiple test classes?
The [SetUpFixture] attribute is used on a class for running a setup fixture that will be used across multiple test classes in the same namespace.</p>
<p>To run a setup function once for a particular test class you'd want to us the [TestFixtureSetUp] attribute on your setup function.</p>