myname
myname

Reputation: 29

how to run tests in specific order in tfs2015

In tfs2013 we use vsmdi and tests setting to run tests in specific order. Now, in tfs2015 we don't want to use tesstetting. How to run tests in specific order in tfs2015?

Upvotes: 2

Views: 693

Answers (2)

emamones
emamones

Reputation: 77

In my Opinion its possible. In the Test Drop location i have the complete Project, and in the Executions folder i have the ordered test. please contact me in case of questions, hope it helps enter image description here

Upvotes: 1

Chamberlain
Chamberlain

Reputation: 901

To run tests in order in Vnext build , you could add an Ordered Test file in your test project and run it in Vnext Build.

  1. Add an Order Test file in your test project and use it to define the testing order.
  2. In your build template, add an Visual Studio Test. Change the Test Assembly like the picture below. enter image description here

Please refer more info: How to: Create an Ordered Test

Upvotes: 2

Related Questions