Is it possible to stop the generation of TestResult.xml when using the NUnit GUI test runner, or to change the location that it is saved to?
So I have my project and it is set up like this: MyProject MyPr开发者_开发问答oject.Module1 MyProject.Module1.Tests
I have an application using NHibernate that is already deployed and working properly, and I\'m re-factoring the unit tests to use SQLite for improved performance, and to keep unit test data out of the
I have several class files in App_Code in an ASP.net website running in Microsoft Visual Studio 2005 Professional.
I\'ve been playing around with .NET开发者_开发问答 SpeechSynthesizer lately. and I\'ve got a method that takes in a string and creates a .wav file out of that string.
Summary: I can run unit tests and code-coverage, but the report only includes NUnit classes, not my application classes.
I want to get the conso开发者_开发知识库le output along with the regular test results in the CruiseControl.NET build log. I was able to get this before when running NUnit from MSBuild, but now only th
I\'m working on some test cases at the moment, and I\'m regularly finding that I\'m ending up with multiple asserts in each case. For example (over-simplified and comments stripped for brevity):
I\'m writing an integration tests for my database, and I\'ve got one question. At the beginning of a test method I\'m adding some objects to database and at the end of the method I should remove it.
I have two lists, I want to check whether the two lists are the same ( order not important), and whether it\'s the same depends on the IEqualityComparer instance I implement.