We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c811a10 commit e350e38Copy full SHA for e350e38
src/Event/Value/Test/TestDoxBuilder.php
@@ -38,12 +38,13 @@ public static function fromTestCase(TestCase $testCase): TestDox
38
*/
39
public static function fromClassNameAndMethodName(string $className, string $methodName): TestDox
40
{
41
- $prettifier = new NamePrettifier;
+ $prettifier = new NamePrettifier;
42
+ $prettyMethod = $prettifier->prettifyTestMethodName($methodName);
43
44
return new TestDox(
45
$prettifier->prettifyTestClassName($className),
- $prettifier->prettifyTestMethodName($methodName),
46
+ $prettyMethod,
47
48
);
49
}
50
0 commit comments