Class: Test::Unit::TestThreadRunContext

Inherits:
TestRunContext show all
Defined in:
lib/test/unit/test-thread-run-context.rb

Instance Attribute Summary collapse

Attributes inherited from TestRunContext

#runner_class

Instance Method Summary collapse

Constructor Details

#initialize(runner_class, queue, shutdowns) ⇒ TestThreadRunContext

Returns a new instance of TestThreadRunContext.



13
14
15
16
17
# File 'lib/test/unit/test-thread-run-context.rb', line 13

def initialize(runner_class, queue, shutdowns)
  super(runner_class)
  @queue = queue
  @shutdowns = shutdowns
end

Instance Attribute Details

#queueObject (readonly)

Returns the value of attribute queue.



12
13
14
# File 'lib/test/unit/test-thread-run-context.rb', line 12

def queue
  @queue
end

#shutdownsObject (readonly)

Returns the value of attribute shutdowns.



12
13
14
# File 'lib/test/unit/test-thread-run-context.rb', line 12

def shutdowns
  @shutdowns
end