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
|
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
|
||
|
|
|
|
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. |
|||
|
|
|
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. |
|||
|
|
|
|
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
See Also: characteristics of a good test |
||
|
|
|
|
This looks like a duplicate but you can see my answer to that here |
||
|
|