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_created.rb 277 B

2 years ago
123456789101112
  1. # frozen_string_literal: true
  2. require 'cucumber/core/events'
  3. module Cucumber
  4. module Events
  5. # Event fired when a Test::Case is created from a Pickle
  6. class TestCaseCreated < Core::Event.new(:test_case, :pickle)
  7. attr_reader :test_case, :pickle
  8. end
  9. end
  10. end

No Description

Contributors (1)