views:

57

answers:

3

RSPec is a great ruby test framework (for test driven development), anyone knows something like rspec but, for PHP?

+1  A: 

PHPSpec is a Behaviour-Driven Development framework for php. I've not used it myself yet, though, so I can't comment on it specifically.

Daniel Vandersluis
+2  A: 

PHPUnit is the de-facto standard for UnitTesting in PHP.
It can do BD Testing to a limited extent.

Gordon
A: 

Selenium is another one worth to mention here.

takeshin