PHP Errors: Verification Helper
- And another helper that...
- Drops your handler from PHP's error handler stack
-
Returns value of
expected_error_list
abstract class TestCase extends PHPUnit_Framework_TestCase {
protected function were_expected_errors_found() {
restore_error_handler();
return $this->expected_errors_found;
}
}