Ejemplo n.º 1
0
 public function testHandleException()
 {
     Error::setLogger($this->logger);
     $error = new Error();
     $error->setLevel(E_ERROR);
     $error->handleException(new \Exception('Foo'));
     $this->assertSame('error', $this->logs[0]['level']);
 }