diff --git a/plugins/TestingList.java b/plugins/TestingList.java index dac8f90..d951adc 100644 --- a/plugins/TestingList.java +++ b/plugins/TestingList.java @@ -289,7 +289,11 @@ public class TestingList extends Panel { }// //GEN-END:initComponents private void jButtonRunActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButtonRunActionPerformed - this.executeTest(0); + try { + this.executeTest(0); + } catch (InterruptedException ex) { + Logger.getLogger(TestingList.class.getName()).log(Level.SEVERE, null, ex); + } }//GEN-LAST:event_jButtonRunActionPerformed private void jCheckBox1ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jCheckBox1ActionPerformed @@ -366,7 +370,7 @@ public class TestingList extends Panel { // End of variables declaration//GEN-END:variables //execute the selected tests in the list, starting from the position - public void executeTest(int position){ + public void executeTest(int position) throws InterruptedException{ boolean bSelected = false; String sDeviceName; String sTestName;