blob: 4f1d949cd86de8382c9f62f32afc6f8a1dd16a9a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011, 2012 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.testsrunner.internal.launcher;
import org.eclipse.cdt.testsrunner.launcher.BaseTestsLaunchDelegate;
/**
* Launch delegate implementation that is used for Run mode.
* @since 8.0
*/
public class RunTestsLaunchDelegate extends BaseTestsLaunchDelegate {
@Override
public String getPreferredDelegateId() {
return "org.eclipse.cdt.cdi.launch.localCLaunch"; //$NON-NLS-1$
}
}