class Test::Unit::TestSuite

Public Instance Methods

run(result, &progress_block) click to toggle source
# File lib/parallel_tests/test/runtime_logger.rb, line 84
def run(result, &progress_block)
  start_time=Time.now
  run_without_timing(result, &progress_block)
  end_time=Time.now
  ParallelTests::Test::RuntimeLogger.log(self.tests.first, start_time, end_time)
end
Also aliased as: run_without_timing
run_without_timing(result, &progress_block)
Alias for: run