Gyanendra Singh
Gyanendra Singh

Reputation: 1005

Specify order of nunit tests running on teamcity

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.

Upvotes: 2

Views: 1422

Answers (1)

Gyanendra Singh
Gyanendra Singh

Reputation: 1005

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.

Upvotes: 2

Related Questions