Hal\MutaTesting\Mutation\Consolidation\SourceFileService::getSurvivors PHP Method

getSurvivors() public method

public getSurvivors ( $file )
    public function getSurvivors($file)
    {
        $collection = new MutationCollection();
        foreach ($this->getMutants($file)->getSurvivors() as $mutant) {
            $collection->push($mutant);
        }
        return $collection;
    }