NUnit is an open source unit testing framework for Microsoft .NET written in C#. It serves the same purpose as JUnit does in the Java world, and is one of many in the xUnit family.
173
votes
8answers
39k views
NUnit vs. MbUnit vs. MSTest vs. xUnit.net [closed]
There are quite a lot of unittesting frameworks out there for .NET. I found this little feature comparison: http://xunit.codeplex.com/wikipage?title=Comparisons
Now I am to choose the best one for ...
210
votes
19answers
50k views
NUnit vs Visual Studio 2008's Test Projects for Unit Testing? [closed]
I am going to be starting up a new project at work and want to get into unit testing. We will be using VS 2008, C#, and the ASP.NET MVC stuff. I am looking at using either NUnit or the built in test ...
85
votes
11answers
26k views
NUnit isn't running Visual Studio 2010 code
I'm trying to load a Visual Studio 2010 beta dll into the NUnit GUI. I get a popup error.
This assembly is built by a runtime newer than the currently loaded runtime and cannot be loaded. You ...
17
votes
2answers
1k views
.NET Unit test runner for iOS
Has anyone written (or know about) a .net unit-test runner, preference to NUnit, that runs on iOS ? or do I have to roll my own ?
My goal is to execute the unit tests on the simulator or devices. So ...
60
votes
5answers
55k views
How to run Google Chrome with Selenium RC?
I am trying to test my site with Selenium RC + Nunit + asp.net.
I can get my tests to work in Firefox,Safari,opera,IE 8 but not google chrome. I put this in for the browser arugment
selenium = new ...
36
votes
9answers
11k views
Compare equality between two objects in NUnit
I'm trying to assert that one object is "equal" to another object.
The objects are just instances of a class with a bunch of public properties. Is there an easy way to have NUnit assert equality ...
44
votes
5answers
9k views
How do I test database-related code with NUnit?
I want to write unit tests with NUnit that hit the database. I'd like to have the database in a consistent state for each test. I thought transactions would allow me to "undo" each test so I searched ...
46
votes
9answers
4k views
Unit test for thread safe-ness?
I've written a class and many unit test, but I did not make it thread safe. Now, I want to make the class thread safe, but to prove it and use TDD, I want to write some failing unit tests before I ...
41
votes
11answers
14k views
Is there a free Visual Studio addin for Nunit?
I'm cheap and don't want to pay for ReSharper or TestDriven.NET, is there a free visual Studio addin for NUnit?
41
votes
11answers
12k views
Unit testing the app.config file with NUnit
When you guys are unit testing an application that relies on values from an app.config file? How do you test that those values are read in correctly and how your program reacts to incorrect values ...
17
votes
3answers
3k views
MSTest Equivalent for NUnit's Parameterized Tests?
NUnit supports a feature where you can specify a set of data inputs for a unit test to be run multiple times.
[RowTest]
[Row(1001,1,2,3)]
[Row(1,1001,2,3)]
[Row(1,2,1001,3)]
public void SumTests(int ...
60
votes
15answers
33k views
How do I run NUnit in debug mode from Visual Studio?
I've recently been building a test framework for a bit of C# I've been working on. I have NUnit set up and a new project within my workspace to test the component. All works well if I load up my unit ...
15
votes
3answers
6k views
Moq.Mock<T> - how to setup a method that takes an expression
I am Mocking my repository interface and am not sure how to setup a method that takes an expression and returns an object? I am using Moq and NUnit
Interface:
public interface IReadOnlyRepository : ...
19
votes
2answers
3k views
Does MSTest Have an Equivalent to NUnits TestCase
I find the TestCase feature in NUnit quite useful as a quick way to specify test parameters without needing a seperate method for each test. Is there anything similar in MSTest?
[TestFixture]
...
4
votes
1answer
184 views
Is it a good way of unit testing to use another, tested function to make preparations for the actual test?
I'm trying to get into unit testing with NUnit. At the moment, I'm writing a simple test to get used to the syntax and the way of unit testing. But I'm not sure if I'm doing it right with the ...
1
vote
2answers
4k views
Problem in reading connection string from App.Config when using NUnit 2.5.2
I'm using Microsoft Visual Studio 2005 with Enterprise Library 3.1.
I have a data access layer which is a separate visual studio class library project. I wrote unit tests in a another class library ...
24
votes
5answers
2k views
Moving existing code to Test Driven Development
Having recently discovered this method of development, I'm finding it a rather nice methodology. So, for my first project, I have a small DLL's worth of code (in C#.NET, for what it's worth), and I ...
18
votes
5answers
7k views
How do you get WatiN to work on Windows Server 2008 with IE8?
My problem is that I cannot get a simple WatiN test to reliably work on my development machine which is running Windows Server 2008 and IE8.
I have seen a couple of good posts on this, but am still ...
36
votes
8answers
12k views
How do you test private methods with NUnit?
I am wondering how to use NUnit correctly. First i created a separate Test-Project that uses my main project as reference. But in that case i am not able to test private methods. My guess was that i ...
34
votes
8answers
7k views
How can I run NUnit tests in parallel?
I've got a large acceptance test (~10 seconds per test) test suite written using NUnit. I would like to make use of the fact that my machines are all multiple core boxes. Ideally, I'd be able to have ...
24
votes
8answers
4k views
NUnit - How to test all classes that implement a particular interface
If I have interface IFoo, and have several classes that implement it, what is the best/most elegant/cleverest way to test all those classes against the interface?
I'd like to reduce test code ...
11
votes
2answers
6k views
How to convert NUnit output into an HTML report
Does anyone have any suggestions for a good tool, xslt or other that can produce an HTML report from the XML output of NUnit?
We're currently using NUnit 2.5.5 to run a number of tests on our code ...
15
votes
6answers
5k views
How to run a test method with multiple parameters in MSTest?
NUnit has a feature called Values, like below:
[Test]
public void MyTest(
[Values(1,2,3)] int x,
[Values("A","B")] string s)
{
...
}
This means that the test method will run 6 times:
...
6
votes
6answers
4k views
Run Selenium tests in multiple browsers one after another from C# NUnit
I'm looking for the recommended/nicest way to make Selenium tests execute in several browsers one after another. The website I'm testing isn't big, so I don't need a parallel solution yet.
I have the ...
12
votes
4answers
8k views
RhinoMock vs. TypeMock vs. NUnit's Mocking?
I am just starting to do Test Driven Development, and I am wondering the major differences between RhinoMock, TypeMock, and NUnit's built-in mocking?
Any information would be greatly appreciated!
7
votes
1answer
1k views
.NET NUnit test - Assembly.GetEntryAssembly() is null
When class used Assembly.GetEntryAssembly() run in unit test, the Assembly.GetEntryAssembly() is null. Is there some option how define Assembly.GetEntryAssembly() during unit testing?
15
votes
2answers
2k views
Force NCover 1.5.8 to use v4 framework like testdriven.net does?
I want to run coverage from the command line, but can't seem to get NCover 1.5.8 to instrument the code. It must be possible as when I run coverage tests with TestDriven.net it works. the difference ...
25
votes
4answers
5k views
Unit Testing File I/O
Reading through the existing unit testing related threads here on Stack Overflow, I couldn't find one with a clear answer about how to unit test file I/O operations. I have only recently started ...
21
votes
4answers
12k views
Code coverage with nUnit?
Is there a way to see the code coverage when using nUnit? I know there's such a feature in visual studio but can you use it with nUnit or only with the built-in vs unit tests?
27
votes
4answers
7k views
ASP.Net MVC and nUnit
I have nUnit installed.
I have VS2008 Team Edition installed.
I have ASP.Net MVC Preview 4 (Codeplex) installed.
How do I make Visual Studio show me nUnit as a testing framework when creating a new ...
23
votes
5answers
3k views
Unit Testing ASP.net Web Site Project code stored in App_Code
I have an ASP.net Web Site Project (.net 3.5). Currently all of the non-code behind code files (including Linq2Sql stuff, data contexts, business logic, extension methods, etc) are located in the ...
6
votes
8answers
575 views
How do I start unit testing?
I know that unit testing is desirable, and I am interested in doing unit testing. The only problem is I have no idea how, or even where to start really. So my question is: How do I learn about and ...
19
votes
6answers
8k views
WatiN System.IO.FileNotFoundException Interop.SHDocVw
I have just started to receive the following error when running my WatIn tests.
System.IO.FileNotFoundException : Could not load file or assembly 'Interop.SHDocVw, Version=1.1.0.0, Culture=neutral, ...
18
votes
6answers
4k views
NUnit: “The process cannot access the file … because it is being used by another process.”
I'm using the NUnit GUI version, and it started to get upset at me when I have a test project loaded in there trying to test things. If I make a change in Visual Studio, and then try to rebuild the ...
11
votes
5answers
5k views
Unit testing and checking private variable value
I am writing unit tests with C#, NUnit and Rhino Mocks.
Here are the relevant parts of a class I am testing:
public class ClassToBeTested
{
private IList<object> insertItems = new ...
10
votes
5answers
861 views
Which is better? Unit-test project per solution or per project?
Is it better to have a unit-test project per solution or a unit-test project per project?
With per solution, if you have 5 projects in the solution you end-up with 1 unit-test project containing ...
10
votes
4answers
8k views
Programmatically adding and removing log appenders in log4net
I have a component that uses log4net. I want to create unit tests, that validate that certain error conditions result in the correct logging.
I was thinking that the best way to do this is to create ...
5
votes
15answers
1k views
Favorite .NET Unit Testing framework [closed]
I've been using NUnit for a few years. I've tried MBUnit for a short while as well as Zenebug and XUnit but I keep coming back to NUnit.
What is your favorite/most used Unit test Framework? Can you ...
3
votes
4answers
1k views
Mono for Android: Which Testing Frameworks work
I have created a Mono for Android VS2010 project and added NUnit tests.
It seems Mono for Android does not support NUnit according to this post from Xamarin:
...
14
votes
6answers
434 views
Should I test that methods don't throw exceptions?
I'm making my first baby steps with unit testing and have written (among others) these two methods:
[TestCase]
public void InsertionSortedSet_AddValues_NoException()
{
var test = ...
2
votes
3answers
2k views
NUnit Mocking not working for Singleton Method
Bear with me, I'm new to NUnit. I come from the land of Rails, so some of this is new to me.
I have a line of code that looks like this:
var code = ...
12
votes
3answers
2k views
nunit locking dll
I have been using nunit with visual studio 2010 on a windows 7 64-bit pc.
I am able to open the nunit gui and run my unit tests. If I then change one of the unit tests and try to rebuild, I am ...
3
votes
2answers
905 views
WatiN, NUnit and CruiseControl.NET— Error message 800704a6
When running a suite of tests in NUnit with WatiN through CruiseControl.NET (as a service), this error appears:
SetUp : System.Runtime.InteropServices.COMException :
Creating an instance of the COM ...
2
votes
1answer
166 views
Getting TeamCity to read my NUnit Test configuration file
I have a project in VS 2010 using NUnit and C# to test my application. My project is called MyProjectTests and as per NUnit, I have a MyProjectTests.config file that has a connection string in it to ...
0
votes
1answer
897 views
nant: invalid element nunit2. Unknown task or datatype
How to solve this problem?
I have this ProjectName.UnitTests.config file, and I did exactly what the documentation said: http://nant.sourceforge.net/release/latest/help/tasks/nunit2.html
<?xml ...
56
votes
6answers
37k views
How to find path of active app.config file?
I'm trying to finish this exception handler:
if (ConfigurationManager.ConnectionStrings["ConnectionString"]==null)
{
string pathOfActiveConfigFile = ...?
throw new ...
22
votes
11answers
16k views
Unit test HttpContext.Current.Cache or other server-side methods in C#?
When creating a unit test for a class that uses the HttpContext.Current.Cache class, I get an error when using NUnit. The functionality is basic - check if an item is in the cache, and if not, create ...
28
votes
9answers
4k views
Is there anything I can do in NUnit that I can't do in MSTest?
This question has been asked in various forms in a number of different forums, but, IMHO, I haven't been able to find a place where it's really answered clearly, so I'm going to reframe it and ask it ...
26
votes
4answers
8k views
14
votes
8answers
6k views
Does VS2010 Code Coverage support nUnit?
According to this schema VS2010 Premium and Ultimate has a tool for checking Code Coverage - together with a few other testing tools. Does this support nUnit too, or just MS test?