Unit testing
The first tests to be made are Unit-tests. A successful Unit-test is the essential start for other tests.
But how to perform Unit-tests. Here are some examples:
- Java jUnit, the reference for all other (unit) tests. Build and used for java.
- PHP phpUnit, Build like jUnit for PHP.
- Javascript QUnit, JavaScript testing
jUnit
phpUnit
QUnit
QUnit is a powerful, easy-to-use JavaScript unit testing framework. It's used by the jQuery, jQuery UI and jQuery Mobile projects and is capable of testing any generic JavaScript code, including itself!
- qunitjs Home page