class Tryouts::CLI::VerboseFormatter

def file_parsed(file_path, test_count, setup_present: false, teardown_present: false)

def file_parsed(file_path, test_count, setup_present: false, teardown_present: false)
  pretty_path = Console.pretty_path(file_path)
  message     = "Parsed #{test_count} test cases from #{pretty_path}"
  extras   = []
  extras << 'setup' if setup_present
  extras << 'teardown' if teardown_present
  message += " (#{extras.join(', ')})" unless extras.empty?
  puts indent_text(message, 2)
end