Merges the data from another instance.
public function merge(self $that) : void { $this->filter ->includeFiles($that->filter() ->files()); $this->data ->merge($that->data); $this->tests = array_merge($this->tests, $that->getTests()); $this->cachedReport = null; }