function Started::asString
Same name in this branch
- 11.1.x vendor/phpunit/phpunit/src/Event/Events/Application/Started.php \PHPUnit\Event\Application\Started::asString()
- 11.1.x vendor/phpunit/phpunit/src/Event/Events/TestRunner/Started.php \PHPUnit\Event\TestRunner\Started::asString()
Overrides Event::asString
File
-
vendor/
phpunit/ phpunit/ src/ Event/ Events/ TestSuite/ Started.php, line 42
Class
- Started
- @psalm-immutable
Namespace
PHPUnit\Event\TestSuiteCode
public function asString() : string {
return sprintf('Test Suite Started (%s, %d test%s)', $this->testSuite
->name(), $this->testSuite
->count(), $this->testSuite
->count() !== 1 ? 's' : '');
}