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_run_started.rb 378 B

2 years ago
1234567891011121314
  1. # frozen_string_literal: true
  2. require 'cucumber/core/events'
  3. module Cucumber
  4. module Events
  5. # Event fired once all test cases have been filtered before
  6. # the first one is executed.
  7. class TestRunStarted < Core::Event.new(:test_cases)
  8. # @return [Array<Cucumber::Core::Test::Case>] the test cases to be executed
  9. attr_reader :test_cases
  10. end
  11. end
  12. end

No Description

Contributors (1)