Do ccnet self test

I want to run a test project in ccnet, can anyone help?


I do not use NUnit. I use the [Test Class ()] attribute in my web project and want to run this project from ccnet

0
source share
3 answers

It looks like the test framework will be MsTest

To run MsTest on the build server, you must install visual studio or do the work or hack (alternative to hack ).

Then you can use MsTest.exe

Here is the official documentation for running the MSTest tests.

Similar question and more hacks or workarounds

+4

NUnit,

0
0

Source: https://habr.com/ru/post/1779339/


All Articles