Class | Stella::Test::DaySummary |
In: |
lib/stella/test/daysummary.rb
|
Parent: | Stella::Storable |
testsummaries | [RW] |
# File lib/stella/test/daysummary.rb, line 20 20: def initialize(msg="") 21: @message = msg 22: @testsummaries = [] 23: end
Add a TestRun object to the list
# File lib/stella/test/daysummary.rb, line 26 26: def add_testsummary(testsummary) 27: raise "I got a #{run.class} but I wanted a TestSummary" unless testsummary.is_a?(TestSummary) 28: @testsummaries << testsummary 29: calculate 30: end