class Cucumber::Events::TestRunStarted
Event fired once all test cases have been filtered before the first one is executed.
Attributes
@return [Array<Cucumber::Core::Test::Case>] the test cases to be executed
Public Class Methods
Source
# File lib/cucumber/events/test_run_started.rb, line 13 def self.event_id :test_run_started end
Source
# File lib/cucumber/events/test_run_started.rb, line 17 def initialize(test_cases) @test_cases = test_cases super() end
Calls superclass method