class Cucumber::Formatter::Query::TestCaseStartedByTestCase

def initialize(config)

def initialize(config)
  @config = config
  config.on_event :test_case_created, &method(:on_test_case_created)
  config.on_event :test_case_started, &method(:on_test_case_started)
  @attempts_by_test_case_id = {}
  @test_case_started_id_by_test_case_id = {}
end