class Cucumber::Messages::TestCaseFinished

def self.from_h(hash)

def self.from_h(hash)
  return nil if hash.nil?
  self.new(
    test_case_started_id: hash[:testCaseStartedId],
    timestamp: Timestamp.from_h(hash[:timestamp]),
    will_be_retried: hash[:willBeRetried],
  )
end

def initialize(

def initialize(
  test_case_started_id: '',
  timestamp: Timestamp.new,
  will_be_retried: false
)
  @test_case_started_id = test_case_started_id
  @timestamp = timestamp
  @will_be_retried = will_be_retried
end