blob: 0ef05fcd0e64194d8f2f46f8f7125538955ccad4 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011, 2020 Anton Gorenkov.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Anton Gorenkov - initial API and implementation
*******************************************************************************/
package org.eclipse.cdt.unittest.internal.launcher;
import org.eclipse.cdt.debug.core.ICDTLaunchConfigurationConstants;
import org.eclipse.cdt.unittest.CDTUnitTestPlugin;
import org.eclipse.cdt.unittest.launcher.BaseTestsLaunchDelegate;
/**
* Launch delegate implementation that is used for Run mode.
*/
public class RunTestsLaunchDelegate extends BaseTestsLaunchDelegate {
@Override
public String getPreferredDelegateId() {
return ICDTLaunchConfigurationConstants.PREFERRED_RUN_LAUNCH_DELEGATE;
}
@Override
public String getUnitTestViewSupportID() {
return CDTUnitTestPlugin.CDT_TEST_VIEW_SUPPORT_ID;
}
}