vote up 2 vote down star
1

I am coming from Java and am currently working on a C# project. What is the recommended way to go about a) unit testing existing C# code and b) accomplishing TDD for C# development?

Also is there an equivalent to EMMA / EclEmma (free yet powerful code coverage tool) for Visual Studio and C# code?

flag

IF another person says NUnit, I am gonna puke! Where TF did you people learn to read? – leppie Oct 6 '08 at 14:34
as I've already said to one of the "answers", the key word in my question is "recommended" - I had obviously heard of NUnit, but wanted to know whether it was the best one to go with. Sorry, should have added that to the question. – Epaga Oct 6 '08 at 14:55

10 Answers

vote up 14 vote down check

1 Nunit
2 NCover or
3 PartCover (I never used it)

link|flag
NCover is not free, unfortunately :( – NM Oct 6 '08 at 21:13
vote up 2 vote down

Regarding your question about unit test frameworks:

NUnit 1.0 was a direct port of JUnit. NUnit 2.0 moved away from JUnit syntax in order to take advantage of the .NET platform. xUnit.net is a newer unit test framework (from Jim Newkirk - one of the NUnit 2.0 developers - and Brad Wilson) that states as a goal exposing "advances in other unit test library implementations that have not really surfaced in .NET," which I read as "keeping up with JUnit."

link|flag
vote up 3 vote down

I would highly recommend Gallio (formally mbUnit) for unit testing, and (unfortunately not free) NCover for code coverage.

link|flag
vote up 1 vote down

I'd install:

  1. NUnit for your Unit testing framework http://www.nunit.org/index.php
  2. Test driven.net for runing your tests http://www.testdriven.net/
  3. Rhino Mocks as your mockign framework http://ayende.com/projects/rhino-mocks.aspx

As and aside I find it odd that the NUnit guys seem to be using php to host their homepage...

link|flag
vote up 2 vote down

Unit test framework: NUnit

Unit test runner: Various, but personally I like the one in ReSharper. (ReSharper costs money, but is easily worth it for the various productivity improvements.)

Coverage: NCover (I think this used to be free, but it now costs money. Hmm.)

link|flag
vote up 2 vote down

NUnit for sure.

link|flag
vote up 2 vote down

VS2008 Professional has the Team System unit testing functionality baked in.

link|flag
vote up 2 vote down

NUnit, but NCover is only part of the answer as it isn't free. I've asked elsewhere about that.

link|flag
vote up 7 vote down

NUnit is patterned after JUnit, but if you're using Visual Studio 2008 then consider the built-in unit testing framework.

link|flag
Apparently, the first NUnit was simply the Junit source run through CSC to see what would compile. They went through the minimal conversions necessary. – chris Oct 6 '08 at 14:31
I use the built-in testing framework, but also install TestDriven.Net to get the nice right-click menu extensions that allow me to run individual tests and suites easily. – tvanfosson Oct 6 '08 at 14:52
vote up 2 vote down

NUnit would be it.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.