When I right-click a class in my application code in an ASP.NET MVC 4.6 project, I have this option to create a unit test:
But in my ASP.NET Core (Visual Studio 2015 Core 1.0.0 Tooling Preview 2) I don't have this option available, when I right-click the class.
I have read that xUnit is now the recommended test framework of choice for ASP.NET Core projects. Is it not possible to use the old good Microsoft Unit Testing Framework?
Are we really forced to use xUnit now?
It looks like there will be a compatible version of the MSTest Framework in the future --> Stack Overflow question.
For ASP.NET Core RC2:
Announcing MSTest Framework support for .NET Core RC2 / ASP.NET Core RC2
As I don't want to switch to xUnit.
