blob: 8526daa45bec5532e779ec66a57af199ed8171c0 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2021 Red Hat Inc. and others.
*
* 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:
* Red Hat Inc. - initial API and implementation
*******************************************************************************/
package org.eclipse.pde.unittest.junit.launcher;
/**
* Launch configuration delegate for a JUnit test as a Java application with
* advanced source lookup support.
*
* @provisional This is part of work in progress and can be changed, moved or
* removed without notice
*/
public class AdvancedJUnitPluginLaunchConfigurationDelegate extends JUnitPluginLaunchConfigurationDelegate {
public AdvancedJUnitPluginLaunchConfigurationDelegate() {
super();
allowAdvancedSourcelookup();
}
}