Class: Cucumber::Events::AfterTestStep
- Defined in:
- lib/cucumber/events/after_test_step.rb
Overview
Event fired after each test step has been executed
Instance Attribute Summary collapse
-
#result ⇒ Cucumber::Core::Test::Result
readonly
The result of executing the test step.
-
#test_case ⇒ Cucumber::Core::Test::Case
readonly
The test case currently being executed.
-
#test_step ⇒ Cucumber::Core::Test::Step
readonly
The test step that was just executed.
Instance Attribute Details
#result ⇒ Cucumber::Core::Test::Result (readonly)
The result of executing the test step.
20 21 22 |
# File 'lib/cucumber/events/after_test_step.rb', line 20 def result @result end |
#test_case ⇒ Cucumber::Core::Test::Case (readonly)
The test case currently being executed.
10 11 12 |
# File 'lib/cucumber/events/after_test_step.rb', line 10 def test_case @test_case end |
#test_step ⇒ Cucumber::Core::Test::Step (readonly)
The test step that was just executed.
15 16 17 |
# File 'lib/cucumber/events/after_test_step.rb', line 15 def test_step @test_step end |