Class: Cucumber::Events::AfterTestCase
- Defined in:
- lib/cucumber/events/after_test_case.rb
Overview
Event fired after a test case has finished executing
Instance Attribute Summary collapse
-
#result ⇒ Cucumber::Core::Test::Result
readonly
The result of executing the test case.
-
#test_case ⇒ Cucumber::Core::Test::Case
readonly
The test case that was just executed.
Instance Attribute Details
#result ⇒ Cucumber::Core::Test::Result (readonly)
The result of executing the test case.
15 16 17 |
# File 'lib/cucumber/events/after_test_case.rb', line 15 def result @result end |
#test_case ⇒ Cucumber::Core::Test::Case (readonly)
The test case that was just executed.
10 11 12 |
# File 'lib/cucumber/events/after_test_case.rb', line 10 def test_case @test_case end |