Class: Cucumber::Events::TestStepFinished

Inherits:
Core::Events::TestStepFinished
  • Object
show all
Defined in:
lib/cucumber/events/test_step_finished.rb

Overview

Signals that a Core::Test::Step has finished executing

Instance Attribute Summary collapse

Instance Attribute Details

#resultCucumber::Core::Test::Result (readonly)

Returns the result of running the Core::Test::Step.

Returns:

  • (Cucumber::Core::Test::Result)

    the result of running the Core::Test::Step



13
14
15
# File 'lib/cucumber/events/test_step_finished.rb', line 13

def result
  @result
end

#test_stepCucumber::Core::Test::Step (readonly)

Returns the test step that was executed.

Returns:

  • (Cucumber::Core::Test::Step)

    the test step that was executed



10
11
12
# File 'lib/cucumber/events/test_step_finished.rb', line 10

def test_step
  @test_step
end