class Turn::ProgressReporter
def test_tally(suite)
def test_tally(suite) counts = suite.collect{ |tr| tr.counts } tally = [0,0,0,0,0] counts.each do |count| 5.times{ |i| tally[i] += count[i] } end return tally end
def test_tally(suite) counts = suite.collect{ |tr| tr.counts } tally = [0,0,0,0,0] counts.each do |count| 5.times{ |i| tally[i] += count[i] } end return tally end