Closedown

This commit is contained in:
boccioli_m
2015-06-17 08:38:15 +02:00
parent a9f29be4d5
commit cdaf0da6c6
2 changed files with 8 additions and 8 deletions

View File

@@ -337,7 +337,7 @@ public class TestingList extends Panel {
jPanel2.setLayout(new java.awt.BorderLayout());
jCheckBox1.setToolTipText("Select/Deselect All Tests");
jCheckBox1.setToolTipText("Select/Deselec thet highlighted tests");
jCheckBox1.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jCheckBox1ActionPerformed(evt);
@@ -346,7 +346,7 @@ public class TestingList extends Panel {
jPanel2.add(jCheckBox1, java.awt.BorderLayout.WEST);
jButtonMoveDown.setIcon(new javax.swing.ImageIcon(getClass().getResource("/icons/ArrowDown - 24.png"))); // NOI18N
jButtonMoveDown.setToolTipText("Move the selected tests down");
jButtonMoveDown.setToolTipText("Move the highlighted tests down");
jButtonMoveDown.setMaximumSize(new java.awt.Dimension(25, 25));
jButtonMoveDown.setMinimumSize(new java.awt.Dimension(25, 25));
jButtonMoveDown.setPreferredSize(new java.awt.Dimension(25, 25));
@@ -358,7 +358,7 @@ public class TestingList extends Panel {
jPanel2.add(jButtonMoveDown, java.awt.BorderLayout.SOUTH);
jButtonMoveUp.setIcon(new javax.swing.ImageIcon(getClass().getResource("/icons/ArrowUp - 24.png"))); // NOI18N
jButtonMoveUp.setToolTipText("Move the selected tests up");
jButtonMoveUp.setToolTipText("Move the highlighted tests up");
jButtonMoveUp.setMaximumSize(new java.awt.Dimension(25, 25));
jButtonMoveUp.setMinimumSize(new java.awt.Dimension(25, 25));
jButtonMoveUp.setPreferredSize(new java.awt.Dimension(25, 25));
@@ -622,8 +622,8 @@ public class TestingList extends Panel {
sTestPath = jTable1.getValueAt(row, COL.TESTPATH.ordinal()).toString();;
File f = new File(sTestPath);
if(!f.exists() || f.isDirectory()){
logger.log(Level.SEVERE, "Test file not found: " + sTestPath);
showResult(sDeviceName, sTestPath, "Test file not found: " + sTestPath, TestStatus.FAILURE.toString());
logger.log(Level.SEVERE, "Test script not found: " + sTestPath);
showResult(sDeviceName, sTestPath, "Test script not found: " + sTestPath, TestStatus.FAILURE.toString());
executeTest(position+1);
return;
}