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

Inherits:
Object
  • Object
show all
Defined in:
lib/cucumber/core/events/test_case_finished.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:



14
15
16
# File 'lib/cucumber/core/events/test_case_finished.rb', line 14

def result
  @result
end

#test_caseTest::Case (readonly)

Returns that was executed.

Returns:

  • that was executed



11
12
13
# File 'lib/cucumber/core/events/test_case_finished.rb', line 11

def test_case
  @test_case
end