I am facing an issue recently. When I am changing branch in visual Studio code my tests are not running
Looking my tests should run
What are the proper steps to run jasmine for dotnet core project in Visual Studio Team Services CI (was Visual Studio Online)?
I am doing a demo, and want Nunit better integrated in Visual Studio.
Menu options to Create NUnit test project and test class with reference to the framework (Like Microsoft Test does)
Run/Debug "selected tests" and individual tests with debugging. I don't get it to work with [TestCase]-attribute, seems to run all testcases for a test.
Run failed tests with debugging.
Other cool stuff.
(Visual Studio 2015 RC)
I see some plugins in the gallery, but I am not sure if they do 1-3, and if they work.
Try NUnit Test Adapter or NUnit3 Test Adapter from the makers of NUnit, or ReSharper if you want test runners and more.
You can make you own Visual Studio project templates but I'd just use the basic class library and nuget to get nunit libraries
They won't give you everything but it can be start.
What is the minimum version of Visual studio is supported for runsettings file?
VS2010 or VS2012?
.testsettings file is no longer included in a unit test project. The newer test framework, introduced in Visual Studio 2012, can be configured using a .runsettings file.
If you use a .testsettings file, the MSTest test framework will be
used to run your tests.
This runs more slowly and does not allow you to run tests from third-party test frameworks.
Reference
How to run Ms Fakes Unit test on Jenkins without installing Visual Studio?
Which DLLs are required from visual studio setup to run Fakes unit test on Jenkins Build Server?
We have tried to use VSTest.Console.exe for ms fakes unit test, but on Jenkins it is giving error that "UnitTestIsolation instrumentation failed to initialize. Please restart Visual Studio"
You would need to install VS Ultimate and Premium to run Fakes