up vote 3 down vote favorite
share [g+] share [fb]

What good (free) generator can be recommended for NUnit tests?

link|improve this question
Thanks for your answer Jon - I should have been more peciseley... I'm looking for a stub generater. Example: 1. got a class, 2. generate some a testcase stub with corresponding name 3. generate test methods stubs for public methods – isamux Jan 10 '10 at 8:19
feedback

6 Answers

up vote 1 down vote accepted

Just downloaded and installed Novel's NUnitGenAddIn. It's kind of old-ish (seems to have been last updated in 2006), but once I tweaked the NUnitGenAddIn.AddIn file (change the Assembly path and update the Visual Studio version number to 9.0), it does exactly what I wanted: right-click generation of reasonable unit-test stubs from within Visual Studio 2008. Dunno if that works for what you want, but definitely free (GNU Lesser GPL).

link|improve this answer
feedback

You're going to have to say exactly what you want the generator to do. Personally I've always found automated generators to be more hassle than they're worth - my fingers work just as well :)

On the other hand, you might want to look at Pex which works in conjunction with Code Contracts to explore your code and generate tests in an intelligent way. Pex is able to generate tests in different flavours, including NUnit.

link|improve this answer
1  
+1 for the fingers doing the work. – Chris Missal Aug 7 '09 at 14:46
NUnit support is now out of the box for Pex. – Peli Sep 8 '09 at 2:09
@Peli - excellent. Will edit. – Jon Skeet Sep 8 '09 at 5:18
feedback

Test generators are good at giving you high code coverage. Unfortunately high code coverage doesn't always mean good tests have been generated. I tend to write them out by hand myself.

link|improve this answer
feedback

Pex is free for Academic use, however it is currently still Beta quality and may be a lot more than what you are asking for. Nunit Test Generator isn't free, but at $9.95 it almost may be, however it doesn't do that much more than setting up the testbed and creating a test for every public method.

link|improve this answer
feedback

Dont do it. Tests with value are generated first, by a human (ideally a pair thereof) with their thinking caps on, not their brain in neutral. (That is if you're referring to generating a test per method, or anything else that's not based on some deep insight a la Pex as Jon Skeet said)

link|improve this answer
feedback

If you use resharper you can right-click on a class or method and generate a test class plus one or more test methods (Sorry this was wrong it is part of vs2010)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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