Phprest\ErrorHandler\Handler\LogTest::testInfoExceptionErrorLog PHP 메소드

testInfoExceptionErrorLog() 공개 메소드

    public function testInfoExceptionErrorLog()
    {
        $this->assertFalse($this->monologHandler->hasInfoRecords());
        $this->logHandler->handle(new \ErrorException('test exception', 0, E_STRICT));
        $this->assertTrue($this->monologHandler->hasInfoRecords());
    }