I'm on Zend Studio 8.
I have created an error handler. It gets called, but in the process of debugging it, I notice that I'm getting errors from ZendPHPunit.php.
I'm setting error_reporting in the code with this line: error_reporting(E_ALL | E_STRICT);
The first error I get at my handler is this:
code=8
message=Undefined index: filtered
errFile=C:\Program Files (x86)\Zend\Zend Studio - 8.0.1\plugins\com.zend.php.phpunit_8.0.0.v20110331-1830\resources\ZendPHPUnit.php
errLine=232
Looks like 'filtered' is an index in the results array. What's the best approach here to eliminate these ZendPHPunit.php errors? Is my configuration screwed up? Any ideas?

