class Tryouts::CLI::VerboseFormatter

def test_start(test_case, index, total)

Test-level operations
def test_start(test_case, index, total)
  desc    = test_case.description.to_s
  desc    = 'Unnamed test' if desc.empty?
  message = "Test #{index}/#{total}: #{desc}"
  puts indent_text(Console.color(:dim, message), 2)
end