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 3ee57a4 + 63e7abe commit 4480fdbCopy full SHA for 4480fdb
src/CodeCoverage.php
@@ -370,6 +370,14 @@ public function merge(PHP_CodeCoverage $that)
370
}
371
372
$this->tests = array_merge($this->tests, $that->getTests());
373
+
374
+ $this->filter->setBlacklistedFiles(
375
+ array_merge($this->filter->getBlacklistedFiles(), $that->filter()->getBlacklistedFiles())
376
+ );
377
378
+ $this->filter->setWhitelistedFiles(
379
+ array_merge($this->filter->getWhitelistedFiles(), $that->filter()->getWhitelistedFiles())
380
381
382
383
/**
0 commit comments