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_step_finished.rb 450 B

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

No Description

Contributors (1)