I have heard the term unit testing many times and I am wondering how this is related to the web development field. I program with PHP, Javascript, Actionscript 3.0 and I am starting to get into C++, C# and JAVA. If anyone has any good resources that I can take a look into as I believe this is a good method to follow for “test driven” development?
Share
Unit testing is not only related to web development. It means that you are testing the code independantly from the rest of the application. It is a general term and applies to any type of software.
I recommend to read the Software testing article on Wikipedia if you get started with software testing.
I hope it helps.