Class: Test::Unit::TestThreadRunContext
- Inherits:
-
TestRunContext
- Object
- TestRunContext
- Test::Unit::TestThreadRunContext
- Defined in:
- lib/test/unit/test-thread-run-context.rb
Instance Attribute Summary collapse
-
#queue ⇒ Object
readonly
Returns the value of attribute queue.
-
#shutdowns ⇒ Object
readonly
Returns the value of attribute shutdowns.
Attributes inherited from TestRunContext
Instance Method Summary collapse
-
#initialize(runner_class, queue, shutdowns) ⇒ TestThreadRunContext
constructor
A new instance of TestThreadRunContext.
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
#queue ⇒ Object (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 |
#shutdowns ⇒ Object (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 |