blob: 6ec9800f5d87f8cacbd48d6e5af9b92b6c6f1db0 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2018 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* 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 junit.framework.Test;
public class ExtractMethodTestSetup10 extends Java10Setup {
private IPackageFragment fTry10Package;
public ExtractMethodTestSetup10(Test test) {
super(test);
}
@Override
protected void setUp() throws Exception {
super.setUp();
RefactoringCore.getUndoManager().flush();
IPackageFragmentRoot root= getDefaultSourceFolder();
fTry10Package= root.createPackageFragment("try10_in", true, null);
}
public IPackageFragment getTry10Package() {
return fTry10Package;
}
}