Class: Cucumber::Core::Events::TestCaseFinished
- Inherits:
-
Object
- Object
- Cucumber::Core::Events::TestCaseFinished
- Defined in:
- lib/cucumber/core/events.rb
Overview
Signals that a Test::Case has finished executing
Instance Attribute Summary collapse
-
#result ⇒ Test::Result
readonly
The result of running the Test::Step.
-
#test_case ⇒ Test::Case
readonly
That was executed.
Instance Attribute Details
#result ⇒ Test::Result (readonly)
Returns the result of running the Test::Step.
63 64 65 |
# File 'lib/cucumber/core/events.rb', line 63 def result @result end |
#test_case ⇒ Test::Case (readonly)
Returns that was executed.
60 61 62 |
# File 'lib/cucumber/core/events.rb', line 60 def test_case @test_case end |