Microsoft .NET Unit Testing Framework (MSTest)
Does MSTest have standalone GUI similar to nUnit that lets me use it and run test without visual studio? What …
visual-studio-2010 visual-studio unit-testing mstestI have seen in a Microsoft video about Visual Studio update 2 regarding these attributes. However, I can't find any other …
c# unit-testing mstestI need to run mstest from the command line - where in the world is this exe located? Can anyone …
.net testing mstest file-locationSo I have situation when I need skip current test from test method body. Simplest way is to write something …
c# unit-testing mstestInstead of [SetUp] and [TearDown] in Nunit what is the alternative in Visual Studio Ultimate 2010 Unit Testing. In Nunit you …
visual-studio-2010 unit-testing mstestI'm testing a class that is part of a hierarchy. I've been setting up my test classes with the object …
c# unit-testing mstestBasically I would like to tell MSTest to execute a bit of code before launching into a series of test …
.net mstestI've got a test which requires an XML file to be read in and then parsed. How can I have …
visual-studio mstestWhat is the difference between TestInitialize vs ClassInitialize in MSTest? What are the pros cons of each? I'm under the …
c# mstest vs-unit-testing-framework