class Cucumber::Events::AfterTestStep

 Event fired after each test step has been executed

Attributes

result[R]

 The result of executing the test step.

@return [Cucumber::Core::Test::Result]
test_case[R]

The test case currently being executed.

@return [Cucumber::Core::Test::Case]

test_step[R]

 The test step that was just executed.

@return [Cucumber::Core::Test::Step]

Public Class Methods

new(test_case, test_step, result) click to toggle source

@private

# File lib/cucumber/events/after_test_step.rb, line 23
def initialize(test_case, test_step, result)
  @test_case, @test_step, @result = test_case, test_step, result
end