Method: Cucumber::RunningTestCase::TestCase#initialize

Defined in:
lib/cucumber/running_test_case.rb

#initialize(test_case, result = Core::Test::Result::Unknown.new) ⇒ TestCase

Returns a new instance of TestCase.

[View source] [View on GitHub]

24
25
26
27
28
# File 'lib/cucumber/running_test_case.rb', line 24

def initialize(test_case, result = Core::Test::Result::Unknown.new)
  @test_case = test_case
  @result = result
  super test_case
end