Plum\Plum\Result::getErrorCount PHP Метод

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

public getErrorCount ( ) : integer
Результат integer
    public function getErrorCount()
    {
        return count($this->exceptions);
    }

Usage Example

Пример #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());
 }