PHPUnit_Framework_TestResult::notImplementedCount PHP Метод

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

Gets the number of incomplete tests.
public notImplementedCount ( ) : integer
Результат integer
    public function notImplementedCount()
    {
        return count($this->notImplemented);
    }

Usage Example

Пример #1
0
 /**
  * @param  PHPUnit_Framework_TestResult  $result
  */
 protected function printIncompletes(PHPUnit_Framework_TestResult $result)
 {
     $this->printDefects($result->notImplemented(), $result->notImplementedCount(), 'incomplete test');
 }
All Usage Examples Of PHPUnit_Framework_TestResult::notImplementedCount