public void restart() { final Project project = PlatformDataKeys.PROJECT.getData( DataManager.getInstance().getDataContext(myDescriptor.getComponent())); if (ExecutorRegistry.getInstance() .isStarting(project, myExecutor.getId(), myRunner.getRunnerId())) { return; } try { final ExecutionEnvironment old = myEnvironment; myRunner.execute( myExecutor, new ExecutionEnvironment( old.getRunProfile(), old.getExecutionTarget(), project, old.getRunnerSettings(), old.getConfigurationSettings(), myDescriptor, old.getRunnerAndConfigurationSettings())); } catch (RunCanceledByUserException ignore) { } catch (ExecutionException e1) { Messages.showErrorDialog( project, e1.getMessage(), ExecutionBundle.message("restart.error.message.title")); } }
public RunProfileState getState( @NotNull final Executor executor, @NotNull final ExecutionEnvironment env) throws ExecutionException { return TestObject.fromString( myData.TEST_OBJECT, getProject(), this, env.getRunnerSettings(), env.getConfigurationSettings()); }
@Override public RunnerSettings getRunnerSettings() { return myEnvironment.getRunnerSettings(); }