Linux SRV-16 6.18.44-paas #1 SMP PREEMPT_DYNAMIC Thu Aug 13 10:08:12 UTC 2026 x86_64
/
opt
/
ruby-2.6
/
usr
/
lib
/
ruby
/
gems
/
2.6.0
/
gems
/
test-unit-3.2.9
/
lib
/
test
/
unit
/
collector
/
//opt/ruby-2.6/usr/lib/ruby/gems/2.6.0/gems/test-unit-3.2.9/lib/test/unit/collector/descendant.rb
require 'test/unit/collector' module Test module Unit module Collector class Descendant include Collector NAME = 'collected from the subclasses of TestCase' def collect(name=NAME) suite = TestSuite.new(name) add_test_cases(suite, TestCase::DESCENDANTS) suite end end end end end