You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

test_case_finished.rb 436 B

2 years ago
1234567891011121314
  1. require 'cucumber/core/events'
  2. module Cucumber
  3. module Events
  4. # Signals that a {Cucumber::Core::Test::Case} has finished executing
  5. class TestCaseFinished < Core::Events::TestCaseFinished
  6. # @return [Cucumber::Core::Test::Case] that was executed
  7. attr_reader :test_case
  8. # @return [Cucumber::Core::Test::Result] the result of running the {Cucumber::Core::Test::Case}
  9. attr_reader :result
  10. end
  11. end
  12. end

No Description

Contributors (1)