class Cucumber::Events::BeforeTestCase

 Event fired before a test case is executed

Attributes

test_case[R]

The test case about to be executed.

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

Public Class Methods

new(test_case) click to toggle source

@private

# File lib/cucumber/events/before_test_case.rb, line 13
def initialize(test_case)
  @test_case = test_case
end