blob: 7a06aa21e0437c4035ddf09894524efc5f2dd42a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2020 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
*
* derived from corresponding file in org.eclipse.jdt.ui.tests.core
* instead extending TestSetup for junit4 ExternalResource is extended
* to allow use as junit "@Rule"
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.ui.tests.core.rules;
import org.eclipse.jdt.testplugin.JavaProjectHelper;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IPath;
import org.eclipse.jdt.core.IClasspathAttribute;
import org.eclipse.jdt.core.IClasspathEntry;
import org.eclipse.jdt.core.IJavaProject;
import org.eclipse.jdt.core.JavaCore;
import org.eclipse.jdt.internal.core.ClasspathEntry;
public class Java14ProjectTestSetup extends ProjectTestSetup {
private boolean enable_preview_feature;
public Java14ProjectTestSetup() {
super("TestSetupProject14", JavaProjectHelper.RT_STUBS14);
}
@Override
public IClasspathEntry[] getDefaultClasspath() throws CoreException {
IPath[] rtJarPath= JavaProjectHelper.findRtJar(ipath);
IClasspathAttribute[] extraAttributes= { JavaCore.newClasspathAttribute(IClasspathAttribute.MODULE, Boolean.TRUE.toString()) };
return new IClasspathEntry[] { JavaCore.newLibraryEntry(rtJarPath[0], rtJarPath[1], rtJarPath[2], ClasspathEntry.NO_ACCESS_RULES, extraAttributes, true) };
}
public Java14ProjectTestSetup( boolean enable_preview_feature) {
this();
this.enable_preview_feature= enable_preview_feature;
}
@Override
protected IJavaProject createAndInitializeProject() throws CoreException {
IJavaProject javaProject= super.createAndInitializeProject();
JavaProjectHelper.set14CompilerOptions(javaProject, enable_preview_feature);
return javaProject;
}
}