getExceptions() публичный Метод

public getExceptions ( ) : Exception[]
Результат Exception[]
Пример #1
0
 /**
  * @test
  * @covers Plum\Plum\Result::addException()
  * @covers Plum\Plum\Result::getExceptions()
  * @covers Plum\Plum\Result::getErrorCount()
  */
 public function addExceptionShouldAddException()
 {
     $exception = new Exception();
     $this->assertInstanceOf('Plum\\Plum\\Result', $this->result->addException($exception));
     $this->assertContains($exception, $this->result->getExceptions());
     $this->assertEquals(1, $this->result->getErrorCount());
 }
Пример #2
0
 /**
  * @param Result $result
  */
 public function outputExceptions(Result $result)
 {
     foreach ($result->getExceptions() as $exception) {
         $this->outputExceptionMessage($exception)->outputExceptionTrace($exception);
     }
     return $this;
 }