Class: Test::Unit::TestProcessRunContext
- Inherits:
-
TestRunContext
- Object
- TestRunContext
- Test::Unit::TestProcessRunContext
- Defined in:
- lib/test/unit/test-process-run-context.rb
Instance Attribute Summary collapse
-
#progress_block ⇒ Object
Returns the value of attribute progress_block.
-
#test_names ⇒ Object
readonly
Returns the value of attribute test_names.
Attributes inherited from TestRunContext
Instance Method Summary collapse
-
#initialize(runner_class) ⇒ TestProcessRunContext
constructor
A new instance of TestProcessRunContext.
Constructor Details
#initialize(runner_class) ⇒ TestProcessRunContext
Returns a new instance of TestProcessRunContext.
14 15 16 17 18 |
# File 'lib/test/unit/test-process-run-context.rb', line 14 def initialize(runner_class) super(runner_class) @test_names = [] @progress_block = nil end |
Instance Attribute Details
#progress_block ⇒ Object
Returns the value of attribute progress_block.
13 14 15 |
# File 'lib/test/unit/test-process-run-context.rb', line 13 def progress_block @progress_block end |
#test_names ⇒ Object (readonly)
Returns the value of attribute test_names.
12 13 14 |
# File 'lib/test/unit/test-process-run-context.rb', line 12 def test_names @test_names end |