I am trying to test some legacy database code.I have many situations where I want to Set database in empty state
public void SubmitMessagesToQueue_OneMessage_SubmitSuccessfully() { var messageServiceClientMock = new Mock<IMessageServiceClient>();
I have a ServerCom DLL that comes from Fortran. I generate automatically using tlbimp a MyFortran.dll from the ServerCom.dll that can be referenced directly from C#.
My test project consists of a set of input data files which is fed into a piece of legacy third-party software. Since the input data files for this software are difficult to construct (not something t
I have an entity in Domain Model. This entity has ChangeStatus(StatusesEnum newStatus) method. StatusesEnum has more then 10 members. They can be changed only in correct order, for example StatusesEnu
I have recently tried using the Silverlight NUnit Project template (the one from Jamie Cansdale found here) for a Silverlight 4 project that uses WCF RIA 1.0. I seem to be close, but I still cannot ge
Basically I\'d like to use the NUnit plugin for TeamCity (the program, not necessarily the specific build step using it) to run my unit tests, with NCover for code coverage, and since my unit tests us
I have a complex solution (developed under Windows, deployed under GNU\\Linux) with a number of unit-testing projects, using NUnit 2.9.3.
From what I can tell, the assembly containing the addin must be located in C:\\Program Files (x86)\\NUnit 2.5.7\\bin\\net-2.0\\addins. I think my assembly is being loaded because I have to close NUnit
Has anyone successfully managed to run unit tests for their Monotouch project? I have read other posts where people are told to manually add references to the appropriate assemblies.