Class: Cucumber::Core::Events::TestStepFinished

Inherits:
Object
  • Object
show all
Defined in:
lib/cucumber/core/events.rb

Overview

Signals that a Test::Step has finished executing

Instance Attribute Summary collapse

Instance Attribute Details

#resultTest::Result (readonly)

Returns the result of running the Test::Step.

Returns:



55
56
57
# File 'lib/cucumber/core/events.rb', line 55

def result
  @result
end

#test_stepTest::Step (readonly)

Returns the test step that was executed.

Returns:

  • (Test::Step)

    the test step that was executed



52
53
54
# File 'lib/cucumber/core/events.rb', line 52

def test_step
  @test_step
end