I\'m using VS2010, I have the following method call: [Conditional(\"DEBUG\")] public void VerboseLogging() { }
I am currently working on a project in Visual Studio 2010 that uses MSTest for Silverlight. I had recently converted this project from Visual Studio 2008 where the Silverlight-based tests ran without
I\'m trying to use the CCNetBuildDate and CCNetBuildTime parameters to dynamically change the output filename of my unit test results, so for example:
Is there a way to preserve folder structure with MSTEST deployment? I have a situation with some existing code where I have .config files in a subfolder (called \"Configuration\"). I can specify thi
In my project I write tests using Microsoft\'s unit testing framework. All of my tests pass when I run them from Visual Studio but when I run the tests from MSBuild all of the tests fail with the foll
Can anybody help with this error in the log of my Team Build 2010 build? It only seems to occur when I have two build agents running on the same machine at 开发者_如何学JAVAthe same time.
I am embarking upon my first journey of test driven development in C#. To get started I\'m using MSTest and Rhino.Mocks. I am attempting to write my first unit tests against my ICustomerRepository. It
IEnumerable<ReportReceipt> expected = new List<ReportReceipt>() { new ReportReceipt(\"fileName1\",\"Hash1\",\"some comments1\")
In my MSTest UnitTest project, before running any tests, I need to exe开发者_运维问答cute some commands.Is there a feature, kind of like Global.asax is for web based projects, that will let me kick of
I\'m having trouble with some MSTest unit tests that pass when I run them individually but fail when I run the entire unit test class.The tests test some code that SLaks helped me with earlier, and he