class ActiveSupport::Testing::ParallelizeExecutor

def execution_info

Experimental RBS support (using type sampling data from the type_fusion project).

def execution_info: () -> String

This signature was generated using 3 samples from 1 application.

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