Is it possible to specify the order in which nunit tests are run in teamcity?
If yes, how to do that? These tests are data heavy, and I want to avoid populating the data for them each time. The data is populated in the testfixture, and if ordering works, I don’t need to setup my data for each test.
To sum up the comments, the tests are executed alphabetically. However, I did not want to rename the tests with prefixes such that they ran in some particular order. And taking into consideration Jon’s comment, I moved data setup to test setup from test fixture.