Testing script

Discussion of testing theory and practice, including methodologies (such as TDD, BDD, DDD, Agile, XP) and software - anything to do with testing goes here. (Formerly "The Testing Side of Development")

Moderator: General Moderators

Post Reply
asenthilb
Forum Newbie
Posts: 1
Joined: Fri Jun 15, 2007 11:00 pm

Testing script

Post 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
User avatar
feyd
Neighborhood Spidermoddy
Posts: 31559
Joined: Mon Mar 29, 2004 3:24 pm
Location: Bothell, Washington, USA

Post by feyd »

User avatar
Maugrim_The_Reaper
DevNet Master
Posts: 2704
Joined: Tue Nov 02, 2004 5:43 am
Location: Ireland

Post 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" ;).
Post Reply