I've VS2015 RC project in my visual studio online account. In this project the tests are written with xunit.
In the project I've added the following nuget packages
<package id="xunit" version="2.1.0-beta3-build3029" targetFramework="net46" userInstalled="true" />
<package id="xunit.abstractions" version="2.0.0" targetFramework="net46" userInstalled="true" />
<package id="xunit.assert" version="2.1.0-beta3-build3029" targetFramework="net46" userInstalled="true" />
<package id="xunit.core" version="2.1.0-beta3-build3029" targetFramework="net46" userInstalled="true" />
<package id="xunit.extensibility.core" version="2.1.0-beta3-build3029" targetFramework="net46" userInstalled="true" />
<package id="xunit.runner.visualstudio" version="2.1.0-beta3-build1069" targetFramework="net46" userInstalled="true" />
With this I can see and run the Tests in the VisualStudio TestPane .
Now in the Online configuration I cann add the VisualStudio Test Action. But it seems like it is only looking for MSTestTests.
In the log i can also find:
Warning: Using Isolation mode to run the tests as diagnostic data adapters were enabled in the runsettings. Use the /inIsolation parameter to suppress this warning.
Warning: No test is available in C:\a\7588a0f7\CRM\src\BoundContextes\SharedKernel\SharedKernel.Tests\bin\Debug\SharedKernel.Tests.dll. Make sure that installed test discoverers & executors, platform & framework version settings are appropriate and try again.
In this action I can see that there is a "Path To Custom TEst Adapter". I Asume that I have to set this to something like a XUnit-TestAdapter? But I can't find out what I should enter there Nor where to get this ?