Flowdock
method

start_ui

Importance_0
v1_8_7_330 - Show latest stable - 0 notes - Class: Test::Unit::UI::Tk::TestRunner
start_ui() private

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/test/unit/ui/tk/testrunner.rb, line 84
          def start_ui
            @viewer.run
            running = false
            begin
              loop do
                if (running ^= true)
                  @run_button.configure('text'=>'Stop')
                  @mediator.run_suite
                else
                  @run_button.configure('text'=>'Run')
                  @viewer.join
                  break
                end
              end
            rescue @restart_signal
              retry
            rescue
            end
          end
Register or log in to add new notes.