mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-22 14:52:40 +01:00
Merge pull request #32 from aurelijus/phpunit-simplify-names
Simplify phpunit test names
This commit is contained in:
commit
ee41e9c720
1 changed files with 1 additions and 7 deletions
|
@ -188,13 +188,7 @@ final class PhpunitTestEngine extends ArcanistBaseUnitTestEngine {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$pos = strpos($event->suite, '::');
|
$name = preg_replace('/ \(.*\)/', '', $event->test);
|
||||||
if ($pos === false) {
|
|
||||||
$name = substr($event->test, strlen($event->suite) + 2);
|
|
||||||
} else {
|
|
||||||
$name = substr($event->test, $pos + 2);
|
|
||||||
$name = preg_replace('/ \(array\(.*\)\)/', '', $name);
|
|
||||||
}
|
|
||||||
|
|
||||||
$result = new ArcanistUnitTestResult();
|
$result = new ArcanistUnitTestResult();
|
||||||
$result->setName($name);
|
$result->setName($name);
|
||||||
|
|
Loading…
Reference in a new issue