Re: [PHP-DEV] Code coverage testing

2004-06-29 Thread Michael Luu
These tools are exactly what I'm looking for. Thanks guys! Mike On Wed, 30 Jun 2004 06:07:51 +0200, Sebastian Bergmann <[EMAIL PROTECTED]> wrote: > > George Schlossnagle wrote: > > I believe xDebug supports this > > It does. When using PHPUnit2 with XDebug you get information about > which

Re: [PHP-DEV] Code coverage testing

2004-06-29 Thread Sebastian Bergmann
George Schlossnagle wrote: I believe xDebug supports this It does. When using PHPUnit2 with XDebug you get information about which lines of code are covered by which unit test, etc. -- Sebastian Bergmann http://sebastian-bergmann.de/ http://phpOpenTracker.de/ Das Buch zu PHP 5:

Re: [PHP-DEV] Code coverage testing

2004-06-29 Thread George Schlossnagle
On Jun 29, 2004, at 10:52 PM, Michael Luu wrote: Hi all. I've started poking/hacking around in the Zend source trying to implement code coverage statistics for php files. The end goal is to build php with a coverage option, place it on a test server, run test suites, then see which lines of code in

[PHP-DEV] Code coverage testing

2004-06-29 Thread Michael Luu
Hi all. I've started poking/hacking around in the Zend source trying to implement code coverage statistics for php files. The end goal is to build php with a coverage option, place it on a test server, run test suites, then see which lines of code in which files were hit (more importantly which one