class Test::Unit::TestSuite

def run(result, &block)

def run(result, &block)
  test = tests.first
  if test.is_a? ::Test::Unit::TestSuite # all tests ?
    run_without_timing(result, &block)
    ParallelTests::Test::RuntimeLogger.unique_log
  else
    ParallelTests::Test::RuntimeLogger.log_test_run(test.class) do
      run_without_timing(result, &block)
    end
  end
end