function TestDoxBuilder::fromClassNameAndMethodName
@psalm-param class-string $className @psalm-param non-empty-string $methodName
File
-
vendor/
phpunit/ phpunit/ src/ Event/ Value/ Test/ TestDoxBuilder.php, line 41
Class
- TestDoxBuilder
- @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
Namespace
PHPUnit\Event\CodeCode
public static function fromClassNameAndMethodName(string $className, string $methodName) : TestDox {
$prettifier = new NamePrettifier();
$prettifiedMethodName = $prettifier->prettifyTestMethodName($methodName);
return new TestDox($prettifier->prettifyTestClassName($className), $prettifiedMethodName, $prettifiedMethodName);
}