function TestResultCollector::process
2 calls to TestResultCollector::process()
- TestResultCollector::testErrored in vendor/
phpunit/ phpunit/ src/ Logging/ TestDox/ TestResult/ TestResultCollector.php - TestResultCollector::testFinished in vendor/
phpunit/ phpunit/ src/ Logging/ TestDox/ TestResult/ TestResultCollector.php
File
-
vendor/
phpunit/ phpunit/ src/ Logging/ TestDox/ TestResult/ TestResultCollector.php, line 435
Class
- TestResultCollector
- @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
Namespace
PHPUnit\Logging\TestDoxCode
private function process(TestMethod $test) : void {
if (!isset($this->tests[$test->testDox()
->prettifiedClassName()])) {
$this->tests[$test->testDox()
->prettifiedClassName()] = [];
}
$this->tests[$test->testDox()
->prettifiedClassName()][] = new TestDoxTestMethod($test, $this->status, $this->throwable);
}