class SimpleCov::FileList

def total_branches

Return total count of branches in all files
def total_branches
  return 0 if empty?
  map { |file| file.total_branches.count }.inject(:+)
end