class Tryouts::TestRunner

def process_file(file)

def process_file(file)
  file = FileProcessor.new(
    file: file,
    options: @options,
    output_manager: @output_manager,
    translator: @translator,
    global_tally: @global_tally,
  )
  file.process
rescue StandardError => ex
  handle_file_error(ex)
  @global_tally[:total_errors] += 1
  1
end