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_finished.rb 257 B

2 years ago
123456789101112
  1. # frozen_string_literal: true
  2. require 'cucumber/core/events'
  3. module Cucumber
  4. module Events
  5. # Event fired after all test cases have finished executing
  6. class TestRunFinished < Core::Event.new(:success)
  7. attr_reader :success
  8. end
  9. end
  10. end

No Description

Contributors (1)