/******************************************************************************* * Copyright (c) 2000, 2012 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.core.tests.resources.regression; import java.io.ByteArrayInputStream; import junit.framework.Test; import junit.framework.TestSuite; import org.eclipse.core.resources.*; import org.eclipse.core.runtime.CoreException; import org.eclipse.core.tests.resources.ResourceTest; public class Bug_006708 extends ResourceTest { /** * Constructor for Bug_6708. */ public Bug_006708() { super(); } /** * Constructor for Bug_6708. * @param name */ public Bug_006708(String name) { super(name); } public static Test suite() { return new TestSuite(Bug_006708.class); } public void testBug() { IWorkspace workspace = ResourcesPlugin.getWorkspace(); try { IProject sourceProj = workspace.getRoot().getProject("P1"); sourceProj.create(null); sourceProj.open(null); IFile source = sourceProj.getFile("Source.txt"); source.create(new ByteArrayInputStream("abcdef".getBytes()), false, null); IProject destProj = workspace.getRoot().getProject("P2"); destProj.create(null); destProj.open(null); IFile dest = destProj.getFile("Dest.txt"); source.copy(dest.getFullPath(), false, null); dest.setContents(new ByteArrayInputStream("ghijkl".getBytes()), false, true, null); } catch (CoreException e) { fail("1.0", e); } } }