class DeepTest::Test::Runner
Constants
- NO_FILTERS
Public Class Methods
new(options)
click to toggle source
# File lib/deep_test/test/runner.rb, line 11 def initialize(options) @options = options end
Public Instance Methods
process_work_units()
click to toggle source
# File lib/deep_test/test/runner.rb, line 15 def process_work_units suite = ::Test::Unit::AutoRunner::COLLECTORS[:objectspace].call NO_FILTERS supervised_suite = DeepTest::Test::SupervisedTestSuite.new(suite, @options.server) require 'test/unit/ui/console/testrunner' result = ::Test::Unit::UI::Console::TestRunner.run(supervised_suite, ::Test::Unit::UI::NORMAL) result.passed? end