Good tools which generate NUnit unit tests for .NET assemblies in Visual Studio 2008

Posted by andy on Stack Overflow See other posts from Stack Overflow or by andy
Published on 2010-04-13T22:48:44Z Indexed on 2010/04/13 22:53 UTC
Read the original article Hit count: 419

Hey guys, I'm pretty new to Unit Testing so bare with me.

I realize that best best practice is not to auto generate unit tests, however I'd like to use Code Generation to set-up the basic skeleton of the tests.

Now, I know Visual Studio 2008 already has the built in "create tests", however, it just creates a flat list of all the classes it's going to test... and it's not for NUnit right?

Ideally, I'd like the code generation to follow the folder AND namespace structure of the assembly its generating tests for.

Can you guys recommend any good tools which generate NUnit unit tests for .NET assemblies in Visual Studio 2008?

cheers!

© Stack Overflow or respective owner

Related posts about code-generation

Related posts about unit-testing