Class: Test::Unit::AutoRunner::GCStressListener
- Inherits:
-
Object
- Object
- Test::Unit::AutoRunner::GCStressListener
- Defined in:
- lib/test/unit/autorunner.rb
Instance Method Summary collapse
Instance Method Details
#attach_to_mediator(mediator) ⇒ Object
633 634 635 636 637 638 639 640 641 642 643 |
# File 'lib/test/unit/autorunner.rb', line 633 def attach_to_mediator(mediator) mediator.add_listener(TestCase::STARTED) do |test| GC.start GC.stress = true end mediator.add_listener(TestCase::FINISHED) do |test| GC.start GC.stress = false end end |