function TestDoxBuilder::fromTestCase
Throws
MoreThanOneDataSetFromDataProviderException
1 call to TestDoxBuilder::fromTestCase()
- TestMethodBuilder::fromTestCase in vendor/
phpunit/ phpunit/ src/ Event/ Value/ Test/ TestMethodBuilder.php
File
-
vendor/
phpunit/ phpunit/ src/ Event/ Value/ Test/ TestDoxBuilder.php, line 26
Class
- TestDoxBuilder
- @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
Namespace
PHPUnit\Event\CodeCode
public static function fromTestCase(TestCase $testCase) : TestDox {
$prettifier = new NamePrettifier();
return new TestDox($prettifier->prettifyTestClassName($testCase::class), $prettifier->prettifyTestCase($testCase, false), $prettifier->prettifyTestCase($testCase, true));
}