Class: Test::Unit::Collector::ObjectSpace
- Inherits:
-
Object
- Object
- Test::Unit::Collector::ObjectSpace
- Includes:
- Test::Unit::Collector
- Defined in:
- lib/test/unit/collector/objectspace.rb
Constant Summary collapse
- NAME =
'collected from the ObjectSpace'
Instance Method Summary collapse
- #collect(name = NAME) ⇒ Object
-
#initialize(source = ::ObjectSpace) ⇒ ObjectSpace
constructor
A new instance of ObjectSpace.
Methods included from Test::Unit::Collector
#add_suite, #filter=, #include?, #sort
Constructor Details
#initialize(source = ::ObjectSpace) ⇒ ObjectSpace
Returns a new instance of ObjectSpace.
15 16 17 18 |
# File 'lib/test/unit/collector/objectspace.rb', line 15 def initialize(source=::ObjectSpace) super() @source = source end |
Instance Method Details
#collect(name = NAME) ⇒ Object
20 21 22 23 24 25 26 27 28 29 30 |
# File 'lib/test/unit/collector/objectspace.rb', line 20 def collect(name=NAME) suite = TestSuite.new(name) sub_suites = [] @source.each_object(Class) do |klass| if(Test::Unit::TestCase > klass) add_suite(sub_suites, klass.suite) end end sort(sub_suites).each{|s| suite << s} suite end |