blob: 4f43b43e5c2184836eca14e434345f6b02038ee1 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2014 IBM Corporation 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.core.tests.resources.session;
import junit.framework.Test;
import org.eclipse.core.resources.IPathVariableManager;
import org.eclipse.core.tests.resources.AutomatedTests;
import org.eclipse.core.tests.resources.WorkspaceSessionTest;
import org.eclipse.core.tests.session.WorkspaceSessionTestSuite;
/**
* Test for bug 426263
*/
public class TestBug426263 extends WorkspaceSessionTest {
public static Test suite() {
return new WorkspaceSessionTestSuite(AutomatedTests.PI_RESOURCES_TESTS, TestBug426263.class);
}
public TestBug426263() {
super();
}
public TestBug426263(String name) {
super(name);
}
public void testBug() {
IPathVariableManager manager = getWorkspace().getPathVariableManager();
assertFalse(manager.isUserDefined("ECLIPSE_HOME"));
}
}