blob: 2896e0a8d57ddad719df5b6e0ba159a4847c91bb [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2005 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 junit.framework.Test;
import junit.framework.TestSuite;
import org.eclipse.core.runtime.NullProgressMonitor;
import org.eclipse.jdt.core.IPackageFragment;
import org.eclipse.jdt.core.IPackageFragmentRoot;
import org.eclipse.jdt.internal.corext.refactoring.changes.CopyPackageChange;
import org.eclipse.jdt.testplugin.JavaProjectHelper;
public class CopyPackageChangeTest extends RefactoringTest {
private static final String REFACTORING_PATH= "CopyPackageChange/";
private static final Class clazz= CopyPackageChangeTest.class;
public CopyPackageChangeTest(String name) {
super(name);
}
protected String getRefactoringPath() {
return REFACTORING_PATH;
}
public static Test suite() {
return new RefactoringTestSetup(new TestSuite(clazz));
}
public void test0() throws Exception{
createCU(getPackageP(), "A.java", getFileContents(getRefactoringPath() + "A.java"));
IPackageFragmentRoot newRoot= JavaProjectHelper.addSourceContainer(RefactoringTestSetup.getProject(), "newName");
String packName= getPackageP().getElementName();
CopyPackageChange change= new CopyPackageChange(getPackageP(), newRoot, null);
change.initializeValidationData(new NullProgressMonitor());
performChange(change);
IPackageFragment copied= newRoot.getPackageFragment(packName);
assertTrue("copied.exists()", copied.exists());
assertTrue(copied.getChildren().length == 1);
}
}