Can we have an option to print the full name of the class after removing the test base path and the suite path, so that we can have clarity on the folder structure?
|
public function toString(): string |
|
{ |
|
return sprintf( |
|
'%s: %s', |
|
ReflectionHelper::getClassShortName($this->getTestInstance()), |
|
Message::ucfirst($this->getFeature()), |
|
); |
|
} |
Can we have an option to print the full name of the class after removing the test base path and the suite path, so that we can have clarity on the folder structure?
Codeception/src/Codeception/Test/Cest.php
Lines 197 to 204 in 9644308