Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.41
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
ruby /
vendor_ruby /
test /
unit /
ui /
Delete
Unzip
Name
Size
Permission
Date
Action
console
[ DIR ]
drwxrwxrwx
2020-08-24 23:49
emacs
[ DIR ]
drwxrwxrwx
2020-08-24 23:49
xml
[ DIR ]
drwxrwxrwx
2020-08-24 23:49
testrunner.rb
1.16
KB
-rwxrwxrwx
2016-03-01 23:55
testrunnermediator.rb
3.26
KB
-rwxrwxrwx
2016-03-01 23:55
testrunnerutilities.rb
1.04
KB
-rwxrwxrwx
2016-03-01 23:55
Save
Rename
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