LeeWay
LeeWay

Reputation: 803

Coded UI build server integration process

We would like to integrate an automated functional test solution (developed using SpecFlow and Coded UI) in our build server.

The project looks like this:

Could someone help me with the build-server integration process? Which are the main steps to do this? Do we need to upgrade the VS version on the build server to 2012 Premium? Are there some other solutions/workarounds?

Note: I'm rookie in terms of integration, build-server configuration etc.

Thanks,

Upvotes: 1

Views: 2282

Answers (1)

Zaq Wiedmann
Zaq Wiedmann

Reputation: 333

  1. You're going to want to put your CodedUI tests inside an orderedTest. Right Click on the solution -> add -> orderedTest.
  2. You're going to want to install https://wiki.jenkins-ci.org/display/JENKINS/MSTestRunner+Plugin it's not a requirement, but it makes working with mstest in jenkins a little easier.
  3. At this point you just need to configure the plugin in jenkins to run your orderedTest. It will need you to point to mstest and the location of your orderedtest.

Upvotes: 5

Related Questions