Nunit SetUpFixture Never Runs - Stack Overflow [closed] most recent 30 from stackoverflow.com 2009-12-02T08:25:27Z http://stackoverflow.com/feeds/question/41858 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/41858/nunit-setupfixture-never-runs 2 Nunit SetUpFixture Never Runs [closed] John 2008-09-03T14:55:43Z 2008-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&amp;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#41876 0 Answer by Greg Hurlman for Nunit SetUpFixture Never Runs Greg Hurlman 2008-09-03T15:05:30Z 2008-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#41883 3 Answer by John for Nunit SetUpFixture Never Runs John 2008-09-03T15:07:44Z 2008-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#41897 0 Answer by John Sibly for Nunit SetUpFixture Never Runs John Sibly 2008-09-03T15:12:33Z 2008-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>