Class: LabBench::TestRunner

Inherits:
Test::Unit::UI::Console::TestRunner
  • Object
show all
Defined in:
lib/lab_bench/test_runner.rb

Overview

might be a little hacky to subclass this, but it already provides so many useful methods

Instance Method Summary collapse

Constructor Details

#initialize(*args) ⇒ TestRunner

Returns a new instance of TestRunner.



8
9
10
11
12
13
# File 'lib/lab_bench/test_runner.rb', line 8

def initialize(*args)
  super(*args)
  
  connect_to_mothership
  @guid = "suite_#{rand(2**64).to_s}"
end