Here is my c# unit test design issue: I have one test that I want to run on some code that modifies a file. My test will run the code that modifies the file, then check the result. Pretty straight fo
Using nUnit.result is a ViewResult coming back from an MVC3 controller - it may or may not be there. This works, but smells!Is there a better way?
I have VS 2010 Ultimate with ReSharper, Reflector, and SpecFlow extensions. I use SpecFlow in one of my test projects along with WebDriver for automated UI testing. I am now approaching about 400 indi
Doing a simple test to verify the view name for a controllers action: var c开发者_运维百科ontroller = new UserController();
How to pass a successfully created object from Create action with a RedirectToAction? All looks good in the action, just can\'t reference it in the test.
I\'m working on a .NET library, and I want the build script to be so generic that it can run from both the MS .NET framework, and from a mono installation on a Mac/Linux machine.
My HomeController.Index() action works (in normal operation), but under NUnit testing, the ActionResult (ViewResult) that is returned always has a null View and ViewName.
I\'m using开发者_JAVA百科 WatIn to create an automated test for a Web App that uses Telerik controls: my first challenge is to drive a Telerik date control - a RadDatePicker.
I am running Selenium unittests after my hudson build. And want to use it for monitoring my websites functionality.
I\'ve a code like following: class B; class A { A() { } bool MethodA() { B *pB = new B(); bool bRet = pB->SomeFunction();