use of org.eclipse.linuxtools.internal.profiling.launch.provider.launch.ProviderLaunchConfigurationDelegate in project linuxtools by eclipse.
the class LaunchTest method testDelegate.
@Test
public void testDelegate() throws CoreException {
ILaunchConfiguration config = createConfiguration(proj.getProject());
ProviderLaunchConfigurationDelegate delegate = new ProviderLaunchConfigurationDelegate();
ILaunch launch = new Launch(config, ILaunchManager.PROFILE_MODE, null);
ILaunchConfigurationWorkingCopy wc = config.getWorkingCopy();
setProfileAttributes(wc);
delegate.launch(wc, ILaunchManager.PROFILE_MODE, launch, null);
}
Aggregations