vote up 2 vote down star
1

Hi,

By default nunit tests run alphabetically. Does anyone know of any way to set the execution order? Does an attribute exist for this?

Any help would be greatly appreciated.

Thanks Zaps

flag

4 Answers

vote up 4 vote down check

Your unit tests should each be able to run independently and stand alone. If they satisfy this criterion then the order does not matter.

There are occasions however where you will want to run certain tests first. A typical example is in a Continuous Integration situation where some tests are longer running than others. We use the category attribute so that we can run the tests which use mocking ahead of the tests which use the database.

i.e. put this at the start of your quick tests

[Category("QuickTests")]

Where you have tests which are dependant on certain environmental conditions, consider the TestFixtureSetUp and TestFixtureTearDown attributes, which allow you to mark methods to be executed before and after your tests.

link|flag
@Chris, I tend not to use these attributes, this is an interesting blog post- jamesnewkirk.typepad.com/posts/2007/…. Nice point about category tests though. – RichardOD Jul 3 at 13:43
vote up 2 vote down

Why would you want to do this? It sounds like you have a dependency on the run order, which is a bad thing. You need to reconsider why you want this. Unit tests should run in isolation and be totally independent of others.

It sounds like you are creating candidates for the test smell Erratic Tests.

link|flag
vote up 0 vote down

You should not depend on the order in which the test framework picks tests for execution. Tests should be isolated and independent. In that they should not depend on some other test setting the stage for them or cleaning up after them. They should also produce the same result irrespective of the order of the execution of tests (for a given snapshot of the SUT)

I did a bit of googling. As usual, some people have resorted to sneaky tricks (instead of solving the underlying testability/design issue

  • naming the tests in an alphabetically ordered manner such that tests appear in the order they 'need' to be executed. However NUnit may choose to change this behavior with a later release and then your tests would be hosed. Better check in the current NUnit binaries to Source Control.
  • VS (IMHO encouraging the wrong behavior with their 'agile tools') has something called as "Ordered tests" in their MS testing framework. I didn't waste any time reading up but it seems to be targeted towards the same audience

See Also: characteristics of a good test

link|flag
vote up 0 vote down

This looks like a duplicate but you can see my answer to that here

link|flag

Your Answer

Get an OpenID
or

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