Sunday, December 2, 2012

Test Driven

Test Driven Programming solution is a very powerful solution to several programming problems. What I've come to find out is, if you program without testing along the way, You will be left with a million compile errors with no idea where to start looking for solutions to them. One of the many solutions to this would be test driven programming. Java is my programming language of choice, and that means that it is object oriented. It makes a lot of sense to test each of these objects separately to make sure each of the methods work as they are supposed to. This method of test driven programming helps me eliminate problem potential segments, and helps me deduce what went wrong with the program logic.

No comments:

Post a Comment