Microsoft .NET Unit Testing Framework (MSTest)
Our team has Visual Studio 2012 Professional licenses (not Test Professional). We are developing a smallish web application, and we have …
unit-testing visual-studio-2012 mstest playlistIs there anything wrong with checking so many things in this unit test?: ActualModel = ActualResult.AssertViewRendered() // check 1 .ForView("Index") // check 2 .…
c# unit-testing asp.net-mvc-2 mstestI'm curious as to why the fixture setup must be static? It seems more intuitive to me to have instance …
visual-studio unit-testing mstestI am using MSTest.TestAdapter and MSTest.TestFramework both version 1.2.0 for my MS tests unit tests. On my local machine (…
c# .net unit-testing mstest assembly-loadingI'm getting the following error when running unit tests from visual studio using resharper: Test-case objects missing for the following …
c# .net visual-studio resharper mstestMichael Feathers, in Working Effectively With Legacy Code, on pages 13-14 mentions: A unit test that takes 1/10th of a …
unit-testing performance mstestGiven this test fixture: [TestClass] public class MSTestThreads { [TestMethod] public void Test1() { Trace.WriteLine(Thread.CurrentThread.ManagedThreadId); } [TestMethod] public void …
visual-studio unit-testing mstestI want to use it to fake System.Net.Mail.SmtpClient in a MS-Test UnitTest. Therefor I added a Fakes …
c# mstest microsoft-fakesI'm currently converting my MsTest unit tests to xUnit. With xUnit, is there a way to test exception messages? Is …
unit-testing mstest xunitI am attempting to run SpecFlow tests from the Visual Studio 2010 Command Prompt, and I am getting a rather obtuse …
visual-studio-2010 mstest specflow