class Cucumber::Filters::BroadcastTestRunStartedEvent
Added at the end of the filter chain to broadcast a list of all of the test cases that have made it through the filters.
Public Class Methods
Source
# File lib/cucumber/filters/broadcast_test_run_started_event.rb, line 8 def initialize(config, receiver = nil) super @test_cases = [] end
Calls superclass method
Public Instance Methods
Source
# File lib/cucumber/filters/broadcast_test_run_started_event.rb, line 18 def done config.notify :test_run_started, @test_cases @test_cases.map do |test_case| test_case.describe_to(@receiver) end super self end
Calls superclass method
Source
# File lib/cucumber/filters/broadcast_test_run_started_event.rb, line 13 def test_case(test_case) @test_cases << test_case self end