class Test::Unit::TestSuite

Public Instance Methods

run(result, &block) click to toggle source
# File lib/parallel_tests/test/runtime_logger.rb, line 115
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
Also aliased as: run_without_timing
run_without_timing(result, &block)
Alias for: run