class Cucumber::Events::AfterTestCase
Event fired after a test case has finished executing
Attributes
result[R]
The result of executing the test case.
@return [Cucumber::Core::Test::Result]
test_case[R]
The test case that was just executed.
@return [Cucumber::Core::Test::Case]
Public Class Methods
new(test_case, result)
click to toggle source
@private
# File lib/cucumber/events/after_test_case.rb, line 18 def initialize(test_case, result) @test_case, @result = test_case, result end