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:



53
54
55
# File 'lib/cucumber/core/events.rb', line 53

def result
  @result
end

#test_caseTest::Case (readonly)

Returns that was executed.

Returns:



50
51
52
# File 'lib/cucumber/core/events.rb', line 50

def test_case
  @test_case
end