Class: Cucumber::Core::Events::TestCaseFinished

Inherits:
Object
  • Object
show all
Defined in:
lib/cucumber/core/events.rb

Overview

Signals that a Test::Case has finished executing

Instance Attribute Summary collapse

Instance Attribute Details

#resultTest::Result (readonly)

Returns the result of running the Test::Step.

Returns:



64
65
66
# File 'lib/cucumber/core/events.rb', line 64

def result
  @result
end

#test_caseTest::Case (readonly)

Returns that was executed.

Returns:



61
62
63
# File 'lib/cucumber/core/events.rb', line 61

def test_case
  @test_case
end