lib/cucumber/messages/test_run_started.rb
# frozen_string_literal: true # The code was auto-generated by {this script}[https://github.com/cucumber/messages/blob/main/codegen/codegen.rb] module Cucumber module Messages ## # Represents the TestRunStarted message in Cucumber's {message protocol}[https://github.com/cucumber/messages]. ## ## class TestRunStarted < Message attr_reader :timestamp attr_reader :id def initialize( timestamp: Timestamp.new, id: nil ) @timestamp = timestamp @id = id super() end ## # Returns a new TestRunStarted from the given hash. # If the hash keys are camelCased, they are properly assigned to the # corresponding snake_cased attributes. # # Cucumber::Messages::TestRunStarted.from_h(some_hash) # => #<Cucumber::Messages::TestRunStarted:0x... ...> ## def self.from_h(hash) return nil if hash.nil? new( timestamp: Timestamp.from_h(hash[:timestamp]), id: hash[:id] ) end end end end