How do you debug a PHP test file in Netbeans?

The menu option is disabled for me. I can check normally, and I can debug everything in order, just not both together. Is it possible or the menu option is disabled because it is not implemented for PHP.

I hope that I don’t have to go through the “Create Test Files” procedure to enable it when I create the test files myself, instead of letting netbeans do this.

+2
source share
1 answer

You should be able to debug files *Test.phpindividually, like a regular project. There is also a setting (at least in NetBeans 7.0) on the PHPUnit project properties page that tells NB to run all files ending in Test.php, like PHPUnit tests.

+4
source

All Articles