Class: JavaAutoTest::Main

Inherits:
Object
  • Object
show all
Defined in:
lib/java_autotest.rb

Class Method Summary collapse

Class Method Details

.executeObject



7
8
9
10
11
12
13
14
15
16
# File 'lib/java_autotest.rb', line 7

def self.execute
  autotest = AutoTest.new
  loop do
    begin
      sleep until autotest.listen
    rescue Interrupt
      break
    end
  end
end