module MiniTest

Public Class Methods

__run(reporter, options) click to toggle source
# File lib/test_queue/runner/minitest5.rb, line 4
def self.__run reporter, options
  suites = Runnable.runnables

  # Run the serial tests first after they complete, run the parallels tests
  # We already sort suites based on its test_order at TestQueue::Runner::Minitest#initialize.
  suites.map { |suite| suite.run reporter, options }
end

Private Class Methods

total_count(options) click to toggle source
# File lib/test_queue/runner/minitest5.rb, line 34
def total_count(options)
  0
end