Tagged Questions
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.
172
votes
19answers
45k views
NUnit vs Visual Studio 2008's Test Projects for Unit Testing?
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 ...
123
votes
7answers
24k views
NUnit vs. MbUnit vs. MSTest vs. xUnit.net
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 ...
71
votes
11answers
17k 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 ...
50
votes
4answers
32k 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 ...
33
votes
7answers
2k 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 ...
33
votes
12answers
17k 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 ...
29
votes
5answers
5k 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 ...
29
votes
8answers
8k 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?
27
votes
4answers
6k 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 ...
26
votes
4answers
6k views
NUnit: Assert.Throws
How do I use Assert.Throws to assert type of the exception and the actual message workding.
Something like this:
Assert.Throws<Exception>(
()=>user.MakeUserActive()).WithMessage("Actual ...
25
votes
7answers
2k 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
7answers
8k views
NUnit vs Visual Studio 2010's MSTest?
I realise that there are many older questions addressing the general question of NUnit v MSTest for versions of Visual Studio up to 2008 (such as this one).
Microsoft have a history of getting things ...
24
votes
11answers
7k 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 ...
23
votes
6answers
18k 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
5answers
1k 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 ...
21
votes
9answers
2k 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 ...
21
votes
7answers
6k views
“Thorough”, tutorial on setting up Jetbrain's TeamCity CI server
Does anyone know where I can find a good tutorial to walk me through how to setup TeamCity CI server? I am new to unit testing and the agile philosophy of development so I could use some help getting ...
21
votes
8answers
5k 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 ...
20
votes
1answer
7k views
Moq: Invalid setup on a non-overridable member: x => x.GetByTitle(“asdf”)
Not sure how I can fix this, trying to do a unit test on the method "GetByTitle"
Here are my definitions:
public class ArticleDAO : GenericNHibernateDAO(IArticle, int>, IArticleDAO
{
...
19
votes
9answers
3k views
Unit test, NUnit or Visual studio?
I'm using Visual studio (sometimes resharper) to run my unit test.
I heard about NUnit, but I don't know many things about it...
Should I care about it ? Can it offer something better than visual ...
18
votes
4answers
960 views
NUnit+ReSharper: How to view results for TestFixture with different parameters?
I have written unit tests under NUnit that use TestFixtures with different parameters. Now, when I run tests, I want to see with which parameters test has been passed and with which hasn't. ...
18
votes
4answers
2k 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 ...
17
votes
3answers
2k views
NUnit.Framework.Assert.IsInstanceOfType() is obsolete
I'm currently reading the book Professional Enterprise .NET and I've noticed this warning in some of the example programs:
'NUnit.Framework.Assert.IsInstanceOfType(System.Type, object)' is obsolete
...
16
votes
6answers
6k views
NUnit Test Run Order
By default nunit tests run alphabetically. Does anyone know of any way to set the execution order? Does an attribute exist for this?
Any help would be greatly appreciated.
Thanks
Zaps
16
votes
10answers
5k views
How do I add NUnit as a test framework option for ASP.NET MVC to Visual Web Developer 2008 Express?
According to Professional ASP.NET MVC 1.0, page 8, "If you are using VS 2008 Standard Edition or Visual Web Developer 2008 Express you will need to download and install the NUnit, MBUnit or XUnit ...
16
votes
10answers
12k 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 ...
16
votes
7answers
5k 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 ...
16
votes
5answers
5k views
Nunit.exe cannot work on Vista 64bits if x86 build
I am on Vista 64 bits and I have a project built with x86 configuration. All work fine. Now, we are at the time to create test. We have NUnit 2.4.8 but we have a lot of problem.
The test are loading ...
15
votes
7answers
1k views
Multiple asserts in single test?
Let's say I want to write a function that validates an email address
with a regex. I write a little test to check my function and write the
actual function. Make it pass.
However, I can come up with ...
15
votes
3answers
6k views
NUnit "could not load file or assemby 'MyTestProject'
I'm setting up a new 64 bit machine to run as a build server. When I try to load my NUnit test assembly into NUnit GUI I get the following error.
There is nothing obvious missing, all the ...
15
votes
6answers
4k views
When do I use the TestFixtureSetUp attribute instead of a default constructor?
The NUnit documentation doesn't tell me when to use a method with a testfixturesetup en when to do the setup in the constructor
public class MyTest
{
private MyClass myClass;
public ...
14
votes
6answers
269 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 = ...
14
votes
2answers
440 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 ...
14
votes
8answers
3k 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 ...
13
votes
10answers
828 views
Why do we need mocking frameworks?
I have worked with code which had NUnit test written. But, I have never worked with mocking frameworks. What are they? I understand dependency injection and how it helps to improve the testability. I ...
13
votes
4answers
1k 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 ...
13
votes
2answers
3k views
13
votes
6answers
3k 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 ...
13
votes
8answers
2k views
NUnit vs Team System Unit Test
Which do you prefer?
What are the advantages and disadvantages of each for Unit Testing?
EDIT: I will admit that Team System offers a lot more than just Unit Testing, such as performance and load ...
12
votes
5answers
1k views
Asserting two List<List<T>> Are Equivalent to Each Other
To make sure that two lists are the same, in nunit, we can use CollectionAssert.AreEquivalent to check that these two lists contain the same elements ( orders not important).
But how to check whether ...
12
votes
5answers
4k views
VS 2010, NUNit, and “The breakpoint will not currently be hit. No symbols have been loaded for this document”
Using Windows 7 32 bit, VS 2010, .NET 4 DLL, NUnit (2.5.5) to unit test the application. I'm currently getting the following error; seen plenty of posts and tried the following:
restart machine
...
12
votes
6answers
524 views
C#: How to test for StackOverflowException
Say you have a method that could potentially get stuck in an endless method-call loop and crash with a StackOverflowException. For example my naive RecursiveSelect method mentioned in this question.
...
12
votes
12answers
2k views
Unit testing XML Generation
What unit testing strategies do people recommend for testing xml is being generated correctly.
The my current tests seem abit primitive, something along the lines of:
[Test]
public void ...
11
votes
2answers
287 views
Is it possible to visualize parametrized NUnit tests using the Resharper GUI?
I'm using the Unit Test Sessions window of ReSharper 5.1 in order to run NUnit tests. It gives great visualization and 90% of the time it is just what I need.
The only problem is that the Unit Test ...
11
votes
2answers
981 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 ...
11
votes
1answer
440 views
Programatically skip an nunit test
Is there a way for an nunit test to end and tell the test runner that it should be considered skipped/ignored, rather than succeeded or failed?
My motivation for this is that I have a few tests that ...
11
votes
4answers
1k views
Is there a free code coverage tool suitable for use with .NET 4 and NUnit?
Is there a free code coverage tool suitable for use with .NET 4 and NUnit that runs from the command line (and is thus suitable for use on a build server)?
Please note that any tools that require ...
11
votes
4answers
988 views
Dynamically create tests in NUnit
Using Nunit, I want to be able to write a test fixture that will read all the filenames in a particular directory and create a test for each file.
I could quite easily write one test method that ...
11
votes
8answers
1k views
Is it bad form to count on the order of your NUnit unit tests
I have been creating Unit tests like crazy and find that I'm often having to set up something in one test that I just tore down in a previous test. Is it ever reasonable to create something (e.g. a ...
11
votes
6answers
3k views
What is the best Nunit test runner out there?
Having recently gotten into test driven development I am using the Nunit test runner shipped as part of resharper. It has some downsides in terms of there is no shortcut to run tests and I have to go ...