function TestSuiteForTestMethodWithDataProvider::__construct
@psalm-param non-empty-string $name @psalm-param class-string $className @psalm-param non-empty-string $methodName
Overrides TestSuite::__construct
File
-
vendor/
phpunit/ phpunit/ src/ Event/ Value/ TestSuite/ TestSuiteForTestMethodWithDataProvider.php, line 38
Class
- TestSuiteForTestMethodWithDataProvider
- @psalm-immutable
Namespace
PHPUnit\Event\TestSuiteCode
public function __construct(string $name, int $size, TestCollection $tests, string $className, string $methodName, string $file, int $line) {
parent::__construct($name, $size, $tests);
$this->className = $className;
$this->methodName = $methodName;
$this->file = $file;
$this->line = $line;
}