Books or Articles on Using NUnit to Test Entire Features

Posted by INTPnerd on Stack Overflow See other posts from Stack Overflow or by INTPnerd
Published on 2010-04-06T19:55:29Z Indexed on 2010/04/06 20:13 UTC
Read the original article Hit count: 279

Filed under:
|

Are there any books or articles that show you how to use NUnit to test entire features of a program? Is there a name for this type of testing?

This is different from the typical use of NUnit for unit testing where you test individual classes. This is similar to acceptance testing except that it is written by the developer to discern that the program does what they interpreted as being what the customer wants the program to do. I don't need it to be readable by non-programmers or to produce a readable specification for non-programmers.

The problem I am having is keeping this feature testing code maintainable. I need help in organizing my feature testing code. I also need help organizing the program code to be drivable in this way. I am having a hard time being able to issue commands to the program while still having good code design.

© Stack Overflow or respective owner

Related posts about nunit

Related posts about testing