Class: Cucumber::Core::Events::TestStepFinished
- Defined in:
- lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/cucumber-core-11.0.0/lib/cucumber/core/events.rb
Overview
Signals that a Test::Step has finished executing
Direct Known Subclasses
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.
60 61 62 |
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/cucumber-core-11.0.0/lib/cucumber/core/events.rb', line 60 def result @result end |
#test_step ⇒ Test::Step (readonly)
Returns the test step that was executed.
57 58 59 |
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/cucumber-core-11.0.0/lib/cucumber/core/events.rb', line 57 def test_step @test_step end |