Microsoft .NET Unit Testing Framework (MSTest)
nice day! I have following project structure: Solution -My.Project -My.Project.Test --Resources ---mytest.file In my test file …
mstest deploymentitemI am very new to unit testing even though i have been coding for a very long time. I want …
asp.net-mvc unit-testing mstestI want to try PartCover for code coverage. I'm running Visual Studio 2008 Professional with MSTest. The Professional Edition does not …
unit-testing mstest code-coverage partcoverI have several batch files which set a log file path and start visual studio 2010 ordertests. When I execute a …
batch-file scheduled-tasks mstest scheduler ordered-testI have one test that needs to work more then 1 minute (VS2008, MSTest, tests are launched from the VisualStudio): const …
unit-testing tdd timeout mstest .net-3.5I am trying to use the EF7 InMemory provider for unit tests but the persistent nature of the InMemory database …
unit-testing mstest entity-framework-coreQuestion: Can anyone tell me why my unit test is failing with this error message? CollectionAssert.AreEquivalent failed. The expected …
c# .net unit-testing mstestI have the folowing tests: [TestClass] public class GeneralTest { [TestMethod] public void VerifyAppDomainHasConfigurationSettings() { string value = ConfigurationManager.AppSettings["TestValue"]; Assert.IsFalse(…
c# unit-testing mstest molesI was using MSTest and i use command mstest /testsettings:local.Testsetting /testcontainer:folder\obj\Debug\test.dll and this …
c# unit-testing mstest vs-unit-testing-frameworkI need to unit testing this GetData method. public MessageResponse GetData(XmlElement requestElement) { MessageResponse MsgResponse = new MessageResponse(); if (requestElement.Attributes["…
unit-testing moq mstest moq-3