method

_run_suites

v1_9_3_392 - Show latest stable - Class: Test::Unit::Runner
_run_suites(suites, type)
public

No documentation available.

# File lib/test/unit.rb, line 557
      def _run_suites suites, type
        @interrupt = nil
        result = []
        if @options[:parallel]
          _run_parallel suites, type, result
        else
          suites.each {|suite|
            begin
              result << _run_suite(suite, type)
            rescue Interrupt => e
              @interrupt = e
              break
            end
          }
        end
        report.reject!{|r| r.start_with? "Skipped:" } if @options[:hide_skip]
        result
      end