I need to use some WPF components in an NUnit unit test. I run the test through Re开发者_Go百科Sharper, and it fails with the following error when using the WPF object:
I\'m diving into unit testing and I would like to know if it is possible to test some special functionality of a dialog or a form with NUnit. I have tried NUnitForms, but it lacks good documentation a
Given two dictionaries var dictA = new Dictionary<string, classA>(); var dictB = new Dictionary<string, classA>();
I\'m reading Pro ASP.NET MVC Framework book.In an example on 106 - 111 the author walks through creating an NUnit test for a HTMLHelper class.
I\'d like to run some NUnit unit tests against a class in a .Net class library assembly which is designed to be hosted by an external process (outside of my control) and loaded at runtime.
I am using Moq and I am sort of new to it. I need to test a private method. I have 2 assemblies: CustomerTest.dll
I\'m trying to get Figure 3 Fake Database from IRepository using the example here http://msdn.microsoft.com/en-us/magazine/dd263069.aspx
We\'ve been trying write unit tests for a worker class written in C#, which mocks out a third party API (COM based) using moq to dynamically create the mock objects. NUnit is our unit testing framewor
This might sound silly but I have been trying to execute a NUnit test using powershell script, had several attempts but no hope. is there different format or do I need to add a plugin?
I have a Set of TestFixtures running fine. I added a new Test into the fixture, but for some reason, I am not able to run it. Other tests in other classes and even in the same class run fine.