Startup
This commit is contained in:
@@ -289,7 +289,11 @@ public class TestingList extends Panel {
|
||||
}// </editor-fold>//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;
|
||||
|
||||
Reference in New Issue
Block a user