blob: 10c7efce069cb66b7b1ff445a4c683ead33de781 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2018, 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
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.ui.tests.refactoring;
import org.eclipse.ltk.core.refactoring.RefactoringCore;
import org.eclipse.jdt.core.IPackageFragment;
import org.eclipse.jdt.core.IPackageFragmentRoot;
import org.eclipse.jdt.ui.tests.refactoring.rules.Java10Setup;
public class ExtractMethodTestSetup10 extends Java10Setup {
private IPackageFragment fTry10Package;
@Override
public void before() throws Exception {
super.before();
RefactoringCore.getUndoManager().flush();
IPackageFragmentRoot root= getDefaultSourceFolder();
fTry10Package= root.createPackageFragment("try10_in", true, null);
}
public IPackageFragment getTry10Package() {
return fTry10Package;
}
}