░▒▓████████████████████████████████▓▒░ ░▒▓█ ▓▒░ ░▒▓█ ~ S W A M P ~ ▓▒░ ░▒▓█ ▓▒░ ░▒▓████████████████████████████████▓▒░
pplmvsvm
LOCATION:
/usr/lib/ruby/gems/3.1.0/gems/test-unit-3.5.3/lib/test/unit/ui
☗ ROOT
↻ REFRESH
✎ CARVE FLESH
EDITING: testrunner.rb
require 'test/unit/ui/testrunnerutilities' module Test module Unit module UI class TestRunner extend TestRunnerUtilities attr_reader :listeners def initialize(suite, options={}) if suite.respond_to?(:suite) @suite = suite.suite else @suite = suite end @options = options @listeners = @options[:listeners] || [] end # Begins the test run. def start setup_mediator attach_to_mediator attach_listeners start_mediator end private def setup_mediator @mediator = TestRunnerMediator.new(@suite) end def attach_listeners @listeners.each do |listener| listener.attach_to_mediator(@mediator) end end def start_mediator @mediator.run end def diff_target_string?(string) Assertions::AssertionMessage.diff_target_string?(string) end def prepare_for_diff(from, to) Assertions::AssertionMessage.prepare_for_diff(from, to) end end end end end
CANCEL
Name
Type
Size
Modified
Actions
↩ ..
DIR
—
—
📁 console/
DIR
—
2026-01-17 03:50
📁 emacs/
DIR
—
2026-01-17 03:50
📁 xml/
DIR
—
2026-01-17 03:50
📄 testrunner.rb
RB
1.2 KB
2025-03-26 04:20
EDIT
📄 testrunnermediator.rb
RB
3.3 KB
2025-03-26 04:20
EDIT
📄 testrunnerutilities.rb
RB
1 KB
2025-03-26 04:20
EDIT