Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. TestDoxBuilder.php

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\Code

Code

public static function fromClassNameAndMethodName(string $className, string $methodName) : TestDox {
    $prettifier = new NamePrettifier();
    $prettifiedMethodName = $prettifier->prettifyTestMethodName($methodName);
    return new TestDox($prettifier->prettifyTestClassName($className), $prettifiedMethodName, $prettifiedMethodName);
}
RSS feed
Powered by Drupal