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.
2 parents 918f877 + c55b28e commit afb95c4Copy full SHA for afb95c4
src/Yandex/Allure/Adapter/AllureAdapter.php
@@ -215,7 +215,7 @@ public function startTest(PHPUnit_Framework_Test $test)
215
$suiteName = $this->suiteName;
216
$methodName = $test->getName();
217
$this->methodName = $methodName;
218
- $event = new TestCaseStartedEvent($this->uuid, get_class($test) . T_DOUBLE_COLON . $methodName);
+ $event = new TestCaseStartedEvent($this->uuid, get_class($test) . "::" . $methodName);
219
if (class_exists($suiteName, false) && method_exists($suiteName, $methodName)) {
220
$annotationManager = new Annotation\AnnotationManager(
221
Annotation\AnnotationProvider::getMethodAnnotations($suiteName, $methodName)
0 commit comments