< PHP Errors: Setter Helper   (Previous) Table of Contents (Next)   PHP Errors: the Test >

PHP Errors: Verification Helper

abstract class TestCase extends PHPUnit_Framework_TestCase {

    protected function were_expected_errors_found() {
        restore_error_handler();
        return $this->expected_errors_found;
    }
}