views:

81

answers:

3

Is there any software that simplifies creation of tests? Most of the contents of tests is pretty repetitive, so I thought someone might have automated this.

A: 

The testing framework in VS2008 does automatically generate tests for a class - if this is really what you want!

Mathias
I prefer NUnit, but thanks.
HeavyWave
A: 

There are some good options below, I must admit I haven't used them as I write all tests myself.

Roger
+4  A: 

You may have a look on Pex - it allows to generate tests for NUnit, MbUnit and others. Here's an article on using this tool.

elder_george