Page 1 of 1

Testing script

Posted: Fri Jun 15, 2007 11:16 pm
by asenthilb
Dear Friends,

I'm working as a tester in a web development company. I would like to know whether we have any script or tool to capture the bugs in PHP based web applicaion.

I heard from one of my friends that for PHP we have some script which can caputre most of issues like functional error and also the cosmetic errors.

Please let me know if anyone come accross such a type of script, so that it will be useful for me.

Thanks in advance.

Thanks,
Senthil

Posted: Sat Jun 16, 2007 12:27 am
by feyd

Posted: Sat Jun 16, 2007 4:57 am
by Maugrim_The_Reaper
If you mean to define tests in advance so that you can automatically test the application, then there are three disciplines: Unit Testing (testing of individual classes), Integration Testing (testing of groups/units of classes for overall functionality) and Acceptance/Functional Testing (testing the application using a browser or HTTP client).

All three are supported by SimpleTest and PHPUnit3.

You may want to be more specific about what you're intending on doing with this "script" ;).