class Cucumber::Events::TestCaseStarted
Signals that a {Cucumber::Core::Test::Case} is about to be executed
Attributes
@return [Cucumber::Core::Test::Case] the test case to be executed
Public Class Methods
Source
# File lib/cucumber/events/test_case_started.rb, line 12 def self.event_id :test_case_started end
Source
# File lib/cucumber/events/test_case_started.rb, line 16 def initialize(test_case) @test_case = test_case super() end
Calls superclass method