Class: Cucumber::Core::Events::TestStepFinished
- Inherits:
-
Object
- Object
- Cucumber::Core::Events::TestStepFinished
- Defined in:
- lib/cucumber/core/events.rb
Overview
Signals that a Test::Step has finished executing
Instance Attribute Summary collapse
-
#result ⇒ Test::Result
readonly
The result of running the Test::Step.
-
#test_step ⇒ Test::Step
readonly
The test step that was executed.
Instance Attribute Details
#result ⇒ Test::Result (readonly)
Returns the result of running the Test::Step.
54 55 56 |
# File 'lib/cucumber/core/events.rb', line 54 def result @result end |
#test_step ⇒ Test::Step (readonly)
Returns the test step that was executed.
51 52 53 |
# File 'lib/cucumber/core/events.rb', line 51 def test_step @test_step end |