Closedown

This commit is contained in:
boccioli_m
2015-09-04 15:47:51 +02:00
parent c9e50452a5
commit 9bcbeeab75

View File

@@ -43,6 +43,7 @@ import java.util.function.Consumer;
import java.util.logging.FileHandler;
import java.util.logging.SimpleFormatter;
import java.util.regex.PatternSyntaxException;
import javax.script.ScriptException;
import javax.swing.DefaultCellEditor;
import javax.swing.JComboBox;
import javax.swing.JDialog;
@@ -1293,6 +1294,11 @@ public class TestingList extends Panel {
testInProgress = getTestInProgress();
showResult(testInProgress[0], testInProgress[1], resultMessage, "false");
}
try {
Object ret = eval("log('Tests interrupted by user')");
} catch (Exception ex) {
Logger.getLogger(TestingList.class.getName()).log(Level.SEVERE, null, ex);
}
}
/**