class Minitest::Reporters::MeanTimeReporter

def initialize(options = {})

Returns:
  • (Minitest::Reporters::MeanTimeReporter) -

Options Hash: (**order)
  • One (Symbol) -- of :desc (default), or :asc. By default the
  • One (Symbol) -- of :avg (default), :min, :max, :last.
  • If (Boolean) -- true it shows all recorded suit results.
  • If (Boolean) -- true it prints pass/skip/fail marks.
  • The (Fixnum) -- number of tests to show in the report
  • Contains (String) -- the parsed results for the
  • Contains (String) -- the times for each test

Parameters:
  • options (Hash) --
def initialize(options = {})
  super
  @all_suite_times = []
end