# File lib/turn/components/case.rb, line 77
    def count_failures
      sum = 0; tests.each{ |t| sum += 1 if t.fail? }; sum
    end