class Cucumber::Events::TestStepFinished
Signals that a {Cucumber::Core::Test::Step} has finished executing
Attributes
@return [Cucumber::Core::Test::Result] the result of running the {Cucumber::Core::Test::Step}
@return [Cucumber::Core::Test::Step] the test step that was executed
Public Class Methods
Source
# File lib/cucumber/events/test_step_finished.rb, line 15 def self.event_id :test_step_finished end
Source
# File lib/cucumber/events/test_step_finished.rb, line 19 def initialize(test_step, result) @test_step = test_step @result = result super() end
Calls superclass method