class Cucumber::Messages::TestRunStarted
def self.from_h(hash)
def self.from_h(hash) return nil if hash.nil? self.new( timestamp: Timestamp.from_h(hash[:timestamp]), ) end
def initialize(
def initialize( timestamp: Timestamp.new ) @timestamp = timestamp end