lithium\test\Report::collect PHP Method

collect() public method

Collects Results from the test filters and aggregates them.
public collect ( string $class, array $results ) : void
$class string Classname of the filter for which to aggregate results.
$results array Array of the filter results for later analysis by the filter itself.
return void
    public function collect($class, $results)
    {
        $this->results['filters'][$class][] = $results;
    }