Click here to Skip to main content
15,886,963 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
if any one know about test driven development method and plz provide example...........
Posted

A simple example: create a UI application (ASP.NET or not) which does nothing above the default project. Then start to write facilities needed for your project. As soon as you create each single method, a single change that cause any manifesting effect, add it to your application, so it could be tested. Test it by yourself or pass to the testing team immediately. (It's the best to combine both ways to test things.) Repeat this cycle until your project is done.

Actually, things are way more complicated than that. There are testing frameworks, you need to do many different kinds of tests, including unit testing, creation of separate prototype covering some parts of technology, testing of your application project during development, regression testing, creation of testing plans and coordination with development plans, and a lot more.

—SA
 
Share this answer
 
Here's a link that will help I believe, for this and other questions you may have.
[^]

Cheers,
Canny
 
Share this answer
 

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