When I right-click a class in my application code in an ASP.NET MVC 4.6 project then, I have this option to create a UNIT Testunit test:
But in my ASP.NET Core (VS2015Visual 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 XUnitxUnit 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 FrameworkUnit Testing Framework?
Are we really forced to use XUnitxUnit now?
Update: It It looks like there will be a compatible version of the MSTest Framework in the future --> SO ThreadStack Overflow question.
For ASP.NET Core RC2: Announcing MSTest Framework support for .NET Core RC2 / ASP.NET Core RC2 As
Announcing MSTest Framework support for .NET Core RC2 / ASP.NET Core RC2
As I don't want to switch to XUnitxUnit.
