vote up 2 vote down star

I have just started to use Nunit 2.4.8.0 (latest version at this time) with much success.

I am now at the point where I am trying to implement a SetUpFixture as described on the NUnit Documentation to span multiple unit tests. This however never seems to run and in turn all my tests fail.

I am using the GUI tool provided to execute the tests.

Am I missing something?

flag

closed as not programming related by John Sep 3 '08 at 15:07

3 Answers

vote up 0 vote down

There are a few restrictions on a class that is used as a setup fixture.

  • It must be a publicly exported type or NUnit will not see it.
  • It must have a default constructor or NUnit will not be able to construct it.

(show us your code)

link|flag
vote up 3 vote down check

Turns out that in the options screen you must set the Test Structure option to Automatic Namespace and not Flat List of Test Fixtures.

Issue Resolved.

link|flag
How do you do this in gallio icarus, i have the same issue – Andrew Bullock May 26 at 13:51
I ran into this issue earlier today. Much banging of head against desk ensued. :-) – Christian Hayter Aug 25 at 15:01
SetupFixtures seem to be a very poorly supported feature. NUnit will only run them if you view the project in a certain way (WTF does visual appearance have to do with behaviour? bad design there). Gallio will simply not run them at all. In the end I had to re-code all my test assemblies to repeat the setup/teardown code in each fixture class to get it to work. – Christian Hayter Aug 26 at 8:49
vote up 0 vote down

span multiple unit tests

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.

To run a setup function once for a particular test class you'd want to us the [TestFixtureSetUp] attribute on your setup function.

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.