Microsoft .NET Unit Testing Framework (MSTest)
I have installed the new Visual Studio 2012 Ultimate. I have created a Test Project with my solution and it contains …
.net unit-testing visual-studio-2012 visual-studio-2013 mstestI'm using Visual Studio 2010 Beta 2. I've got a single [TestClass], which has a [TestInitialize], [TestCleanup] and a few [TestMethods]. Every …
c# visual-studio visual-studio-2010 mstest vs-unit-testing-frameworkWhen I build a unit test project before the tests are executed the test output is copied to a TestResults …
c# .net visual-studio-2008 unit-testing mstestI'm writing a unit test for this one method which returns "void". I would like to have one case that …
c# unit-testing exception mstestI have a c# solution with the following structure: mySolution myProject myProject.MSTests References Microsoft.VisualStudio.QualityTools.UnitTestFramework sutMSTests.cs …
c# unit-testing mstest vs-unit-testing-frameworkMy company is upgrading our Visual Studio 2012 to 2013 Premium. In the midst of this, we are also looking to start …
visual-studio unit-testing nunit visual-studio-2013 mstestWe have MSTest tests which automatically run in hourly production. One of these tests is marked with [Ignore] attribute because …
c# mstest resharper-5.1I have not been able to debug or step through unit test. Here is my sample test code... using System; …
c# visual-studio unit-testing mstestI want to use mstest.exe to run my unit test on build server, but I don't want to install …
visual-studio mstest build-serverUsing MSTest, I needed to obtain the name of the current test from within the [TestInitialize] method. You can get …
c# mstest testcontext