PHPUnit\Runner\CleverAndSmart\Storage\StorageInterface::getRecordings PHP Метод

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

Fetch records, filtered by type. Use the StorageInterface::STATUS_* constants to define the type.
public getRecordings ( array $types, boolean $includeTime = true ) : array
$types array Types to filter
$includeTime boolean Flag whether the result time should also be fetched
Результат array
    public function getRecordings(array $types, $includeTime = true);

Usage Example

 private function getPassed()
 {
     return $this->storage->getRecordings(array(StorageInterface::STATUS_PASSED));
 }
All Usage Examples Of PHPUnit\Runner\CleverAndSmart\Storage\StorageInterface::getRecordings
StorageInterface