chevron-thin-right chevron-thin-left brand cancel-circle search youtube-icon google-plus-icon linkedin-icon facebook-icon twitter-icon toolbox download check linkedin phone twitter-old google-plus facebook profile-male chat calendar profile-male
+1 vote
Hello all.

 

Is there any way to run CI Build in Jenkins running typemock tests?

 

Thanks
asked by danielVeinti0809 (1.2k points)

1 Answer

0 votes

Yes, You can integrate Typemock Isolator with Jenkins CI.

Using MSBuild tasks:

1.       In Jenkins CI, under Build, Add Build Step.

2.       Select Choose Build a Visual Studio project or solution using MSBuild.

3.       In the MSBuild Build File field,  specify the MSBuild build file that contains Typemock Isolator tasks.

4.       Click Save.

Using Windows batch command:

1.       In Jenkins CI, under Build, Add Build Step.

2.       Select Execute windows Batch command.

3.       In the Command field, add the following command to run TMOCKRUNNER:

<location>TMockRunner <location>mstest.exe  /testcontainer:"<location>test.dll"

4.       Click Save.

answered by Bar (3.3k points)
...