예제 #1
0
파일: ErrorsTest.php 프로젝트: headzoo/core
 /**
  * @covers ::toArray
  */
 public function testToArray()
 {
     $this->assertNotEmpty(Errors::toArray());
     $this->assertContains(E_ERROR, Errors::toArray());
     $this->assertContains(E_RECOVERABLE_ERROR, Errors::toArray());
 }