Currently I am using DDsteps as a datadriven testing framework for my unit tests.It works quite well, except when inserting DateTime data into the database.
I have this abstract test class [TestFixture] public abstract class BaseTests { private IRepository _repository;
I use XUnit and Resharper to run my tests. In a given project I usually have a few utility tests which are not really tests but exist purely so I can execute a bit of code easily开发者_JAVA百科. For e
Using Visual Studio 2008 for a unit test, one of the unit tests has to do with a basic performance smoke test to make sure additional code doesn\'t slow down a heavily-used method too badly.
Closed. This question is opinion-based. It is not currently accepting answers. Want to improve this question? Update the question so it can be answered with facts and citations by editing
The goal is to run some tests given some data in those Xml files. How would you easily load a given Xml file into an XmlDoc within the unit test methods?
I am writing a number of unit tests for a logger class I created and I want to simulate the file class.I can\'t find the interface that I need to use to create the MOQ... so how do you successfully MO
I\'m sorry if this appears elsewhere, it may be that my Google-Fu is failing me. I\'m in the process of reading Roy Osherove\'s The Art of Unit Testing and am thrilled to be able to start doing so开发
I am interested in writing unit tests for the SharePoint development work I am doing. 开发者_JAVA技巧 Can anyone suggest practical approachs to implementing unit tests in MOSS?
I\'m working on a web server application that handles requests received from mobile phones. I have request adapters which adapts requests from the phone in request classes I use in the rest of the app