Is vstest.console.exe available on macosx

971 Views Asked by At

I am running my unit tests using vstest.console.exe. Now I am moving my jenkins to a MacOS machine (because I have to compile a xamarin project for OSx).

Using "dotnet test" does not work (yet?) with xamarin forms (see here).

Is vstest.console.exe also avialble on OSX (Visual Studio for Mac is installed)?

I cannot find it anywhere ...

1

There are 1 best solutions below

0
On

You can run Unit Tests on OS X using NUnit or XUnit, but not MSTest. Further, you can use dotnet core for execution of those tests with the appropriate NUnit or XUnit adapter. However, code coverage does not work yet:

https://github.com/Microsoft/vstest/issues/981