Tagged Questions

79
votes
17answers
16k 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 …
31
votes
7answers
5k 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://www.codeplex.com/xunit/Wiki/View.aspx?title=Comparisons Now I am to choose the best …
18
votes
7answers
3k 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 …
16
votes
5answers
642 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 …
14
votes
7answers
244 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 …
13
votes
4answers
1k 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 …
12
votes
5answers
2k 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?
10
votes
6answers
246 views

Which Unit Test framework should I start with for C# in Visual Studio 2008? (Windows Forms app)

Hi, QUESTION - If I'm starting a Windows Forms application in C# using Visual Studio 2008, which unit testing framework should I use? There seems to be one build into VS2008? Or should I look into …
7
votes
1answer
83 views

Does NUnit’s Is.EqualTo not work reliably for classes derived from generic classes?

Today I ran into the following problem with NUnit. I have a class, that derives from a generic class. I started to do some serialization tests and tested for equality using the Is.EqualTo() function …
7
votes
15answers
299 views

Is unit testing a bad idea during beta/prototyping?

A new project we began introduced a lot of new technologies we weren't so familiar with, and an architecture that we don't have a lot of practice in. In other words, the interfaces and interactions …
7
votes
7answers
273 views

Why not hit the database inside unit tests?

Hi I've read in blogs that the database should not be hit when the unit tests run. I understand the theory, however say i have complex store procedures that are part of a business domain operation. I …
7
votes
3answers
462 views

How to Unit Test Asp.net Membership?

Hi I am new to unit testing and I am trying to test some of my .Net membership stuff I been writing. So I am trying to check my VerifyUser method that checks if the users credentials are valid or …
7
votes
7answers
1k 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 …
7
votes
14answers
865 views

Favorite .NET Unit Testing framework

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 …
7
votes
8answers
1k 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 …

1 2 3 4 5 33 next
15 30 50 per page