Microsoft .NET Unit Testing Framework (MSTest)
In MbUnit one can do something like this: [Test] [TestCategory("Bad Arguments")] [TestCategory("Fast")] [ExpectedException(typeof(ArgumentNullException))] public void TestCopyWithBadHref() { . . . } …
unit-testing mstest mbunitCould you please guide me how to run MSTest unit tests using an MSBuild script.
.net msbuild mstest msbuild-task vs-unit-testing-frameworkI've run into a recurring problem with a few different projects using MSTest in VS2012, where every now and then …
visual-studio unit-testing code-coverage mstest vs-unit-testing-frameworkI have a base class ScriptBase which has a virtual function called MyTestInitialize(). When I call MyTestInitialize() from derived class, …
c# automated-tests mstest ui-testingThis is my first test for Asp.Net Web Application. We have an Engine consisting of several modules. I need …
c# asp.net visual-studio-2008 mstest webtestIn generating coverage reports with OpenCover (and then generating an HTML report with ReportGenerator) for an MSTest suite, I am …
c# unit-testing mstest opencover reportgeneratorI have a TestMethod using Selenium as below: [TestMethod] public void ShouldSendPasswordReminder() { // go to loginregister url _fireFoxWebDriver.Navigate().GoToUrl(UkPaBaseUrl + "…
c# unit-testing selenium mstest system-testingWhen creating a generic base test class in MSTest, and inheriting from it, I'm unable to run the tests of …
c# visual-studio unit-testing mstest resharper-5.1I have been using MSpec to write my unit tests and really prefer the BDD style, I think it's a …
c# unit-testing mstest bdd mspecThis question has been asked in various forms in a number of different forums, but, IMHO, I haven't been able …
nunit mstest