From 8fedb6341aa9ab5c8b6fbdb7e507a56e36659fb2 Mon Sep 17 00:00:00 2001 From: boccioli_m Date: Wed, 17 Jun 2015 09:15:02 +0200 Subject: [PATCH] Closedown --- plugins/TestingList.form | 2 ++ plugins/TestingList.java | 6 ++++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/plugins/TestingList.form b/plugins/TestingList.form index 7a8c482..fbfcc1f 100644 --- a/plugins/TestingList.form +++ b/plugins/TestingList.form @@ -137,6 +137,8 @@ + + diff --git a/plugins/TestingList.java b/plugins/TestingList.java index ee5e6d6..301e4d7 100644 --- a/plugins/TestingList.java +++ b/plugins/TestingList.java @@ -338,6 +338,8 @@ public class TestingList extends Panel { jPanel2.setLayout(new java.awt.BorderLayout()); jCheckBox1.setToolTipText("Select/Deselec thet highlighted tests"); + jCheckBox1.setHorizontalAlignment(javax.swing.SwingConstants.CENTER); + jCheckBox1.setHorizontalTextPosition(javax.swing.SwingConstants.CENTER); jCheckBox1.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { jCheckBox1ActionPerformed(evt); @@ -622,8 +624,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 script not found: " + sTestPath); - showResult(sDeviceName, sTestPath, "Test script not found: " + sTestPath, TestStatus.FAILURE.toString()); + logger.log(Level.SEVERE, "Cannot find test script: " + sTestPath); + showResult(sDeviceName, sTestPath, "Cannot find test script: " + sTestPath, TestStatus.FAILURE.toString()); executeTest(position+1); return; }