function TeamCityLogger::testMarkedIncomplete
Throws
File
-
vendor/
phpunit/ phpunit/ src/ Logging/ TeamCity/ TeamCityLogger.php, line 146
Class
- TeamCityLogger
- @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
Namespace
PHPUnit\Logging\TeamCityCode
public function testMarkedIncomplete(MarkedIncomplete $event) : void {
if ($this->time === null) {
$this->time = $event->telemetryInfo()
->time();
}
$this->writeMessage('testIgnored', [
'name' => $event->test()
->name(),
'message' => $event->throwable()
->message(),
'details' => $this->details($event->throwable()),
'duration' => $this->duration($event),
]);
}