updated phpunit

This commit is contained in:
Taras Machyshyn
2014-03-05 13:32:47 +02:00
parent 97cdaf377c
commit a9af3dcf41
17 changed files with 31 additions and 18 deletions
@@ -135,7 +135,7 @@ abstract class PHP_CodeCoverage_Report_Node implements Countable
public function getPath()
{
if ($this->path === NULL) {
if ($this->parent === NULL) {
if ($this->parent === NULL || $this->parent->getPath() == NULL) {
$this->path = $this->name;
} else {
$this->path = $this->parent->getPath() . '/' . $this->name;