function PhpUnitTestRunner::processPhpUnitResults
Same name in other branches
- 11.x core/lib/Drupal/Core/Test/PhpUnitTestRunner.php \Drupal\Core\Test\PhpUnitTestRunner::processPhpUnitResults()
Logs the parsed PHPUnit results into the test run.
Parameters
\Drupal\Core\Test\TestRun $test_run: The test run object.
array[] $phpunit_results: An array of test results, as returned from \Drupal\Core\Test\JUnitConverter::xmlToRows(). Can be the return value of PhpUnitTestRunner::execute().
File
-
core/
lib/ Drupal/ Core/ Test/ PhpUnitTestRunner.php, line 212
Class
- PhpUnitTestRunner
- Run PHPUnit-based tests.
Namespace
Drupal\Core\TestCode
public function processPhpUnitResults(TestRun $test_run, array $phpunit_results) : void {
foreach ($phpunit_results as $result) {
$test_run->insertLogEntry($result);
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.