class Cucumber::Events::BeforeTestStep

 Event fired before a test step is executed

Attributes

test_case[R]

The test case currently being executed.

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

test_step[R]

 The test step about to be executed.

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

Public Class Methods

new(test_case, test_step) click to toggle source

@private

# File lib/cucumber/events/before_test_step.rb, line 18
def initialize(test_case, test_step)
  @test_case, @test_step = test_case, test_step
end