lithium\tests\cases\test\UnitTest::testErrorLevelHonored PHP Method

testErrorLevelHonored() public method

    public function testErrorLevelHonored()
    {
        $original = error_reporting();
        error_reporting($original & ~E_USER_DEPRECATED);
        $this->assertNotException('/^test deprecation$/', function () {
            trigger_error('test deprecation', E_USER_DEPRECATED);
        });
        error_reporting($original);
    }
UnitTest