Click here to Skip to main content
15,886,422 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hai,

I have plan to use NUnit tool for unit testing.How can i implement it in VS2010.As a test engineer point of view, will it effective for finding all bugs ?
Posted
Updated 1-Feb-12 16:19pm
v2

1 solution

Testing can only prove that there is a bug. No testing can prove there is no bugs, ever.

NUnit is effective here, but the results of the tool can be only as good as testing code, no better; and the testing plan, test cases and testing code is something which you do, not the tool. The tool is only the way to organize it all and automate running of the tests. No more, no less.

How to implement it? Strange question. By learning the tool using documentation and the tool itself:
http://en.wikipedia.org/wiki/NUnit[^],
http://www.nunit.org/[^].

The documentation is comprehensive: http://www.nunit.org/index.php?p=docHome&r=2.5.10[^].

You don't expect me to double the documentation, do you? :-)
Perhaps, start with "Getting started". :-)

Maybe, just one idea: all the testing artifacts, testing documentation, all the testing code should be the integral part of the project itself. Project is the sum of its deployed part and everything else, and deployed part is the smaller part. Everything else is needed to "support programming as human activity". Your project can be as successful as its maintenance, no better. The testing is the integral part of it. All the artifacts should be integrated in you code base under you Revision Control System. This is quite a different story though…

Good luck,
—SA
 
Share this answer
 
v2
Comments
amesh004 2-Feb-12 0:18am    
Thank u
Sergey Alexandrovich Kryukov 2-Feb-12 0:22am    
You are welcome.
I just added a bit more, please see.
I you agree it makes some sense, please accept the answer formally (green button) -- thanks.
--SA

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900