blob: 42810ec9d1a5fcf8cf9d6048a286cbb4ca7d010b [file] [log] [blame]
package org.eclipse.jdt.debug.tests.core;
/**********************************************************************
Copyright (c) 2000, 2002 IBM Corp. and others.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Common Public License v0.5
which accompanies this distribution, and is available at
http://www.eclipse.org/legal/cpl-v05.html
Contributors:
IBM Corporation - Initial implementation
*********************************************************************/
import org.eclipse.debug.core.ILaunchConfiguration;
import org.eclipse.debug.core.ILaunchConfigurationWorkingCopy;
import org.eclipse.jdt.debug.tests.AbstractDebugTest;
import org.eclipse.jdt.internal.launching.JavaLocalApplicationLaunchConfigurationDelegate;
import org.eclipse.jdt.launching.IJavaLaunchConfigurationConstants;
/**
* Tests bootpath settings
*/
public class BootpathTests extends AbstractDebugTest {
public BootpathTests(String name) {
super(name);
}
public void testDefaultBootpath() throws Exception {
ILaunchConfiguration config = getLaunchConfiguration("Breakpoints");
JavaLocalApplicationLaunchConfigurationDelegate delegate = new JavaLocalApplicationLaunchConfigurationDelegate();
String[] path = delegate.getBootpath(config);
assertNull("Default bootpath should be null", path);
}
public void testEmptyBootpath() throws Exception {
ILaunchConfiguration config = getLaunchConfiguration("Breakpoints");
ILaunchConfigurationWorkingCopy wc = config.getWorkingCopy();
wc.setAttribute(IJavaLaunchConfigurationConstants.ATTR_DEFAULT_CLASSPATH, false);
JavaLocalApplicationLaunchConfigurationDelegate delegate = new JavaLocalApplicationLaunchConfigurationDelegate();
String[] path = delegate.getBootpath(wc);
assertNotNull("Empty bootpath should be empty array", path);
assertEquals("bootpath should be empty", 0, path.length);
}
}