When executing the c# code in MSTest involving WatiN var browser = new IE(\"http://localhost:56034/\");
I try to configure theMSTest Settings s开发者_开发技巧section[Step 3 Runner: Visual Studio (sln)].My particular configuration require to call a set of scripts (TestSetup.cmd) before the tests. Everyth
I have a strange problem, Visual Studio changes the windows proxy settings when executing a test. Do you know if it is a normal behaviour and how to avoid it?
I am looking for a way to modify catch block depending on if it\'s executed during the unit test run开发者_如何学编程 or not. The purpose is basically to detect/setup mock expectations which are swall
All, I\'m trying to split my MSTest test run into multiple runs because I\'m getting OutOfMemoryExceptions thrown at about the 800/900-ish test mark. I tried profiling mstest.exe with SciTech\'s profi
I have an issue with Hudson calling MSTest. When I manually run the commands below on my machine, I encounter no issues. However, once I have Hudson execute these set of commands, my tests do not run
Im currently trying to test an insert method which uses TryUpdateModel(). I am faking the controllercontext which is needed and although that works it does not seem to be posting the model I have setu
I\'m using MSTest in Visual Studio 2010 and have the need to restore my dat开发者_运维问答abase after all tests have run.
I am currently looking at writing unit tests for a basic execution timer with Moq. There is a function called when the timer is stopped which adds all timings into the database and I need to test that
Reading about MSTest and NUnit I couldn\'t really decide what to use in my project. We use TFS 2008 and VS2010.