How to create a unit test for a Visual Studio 2015 RC / .NET Core project?

I just started playing with the new version of Visual Studio 2015 RC, but I had a problem in that I can’t find a sample project that shows how to do unit testing of the new .NET COre code. An example or even pointing in the right direction would be very helpful. Thanks....

+7
c # visual-studio-2015
source share
1 answer

You should take a look at xUnit , it was written by nUnit, it is compatible with all new versions of vNext (Asp.Net 5, Universal Apps and Xamirin, CoreClr), and tests for MVC vNext are written in it. It also works with nCrunch.

You can install it from nuget .

+4
source share

All Articles