class ActiveSupport::Testing::ParallelizeExecutor

def execution_info

def execution_info
  if parallelized?
    "Running #{tests_count} tests in parallel using #{parallel_executor.size} #{parallelize_with}"
  else
    "Running #{tests_count} tests in a single process (parallelization threshold is #{threshold})"
  end
end