Alert.error("There are no operations using this transformation.", "Error");
}
private boolean isOperationTestable(Operation op) {
OperationClientStartChecker checker = new OperationClientStartChecker(OperationExecutionMode.TEST);
RunnableStatus status = checker.checkRunnableStatus(op);
boolean runnable = status.isRunnable();
if (!runnable) {
showNotTestableMessage(status);
}
return runnable;
}