blob: f2db8650fb62d62bc63d687464a1945b23f182a7 [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.reorg;
import junit.framework.Assert;
import org.eclipse.jdt.core.IJavaProject;
import org.eclipse.jdt.core.IPackageFragmentRoot;
import org.eclipse.jdt.testplugin.JavaProjectHelper;
public class TestProject {
private IJavaProject fTestProject;
private IPackageFragmentRoot fSourceFolder;
public TestProject() throws Exception {
this("TestProject");
}
public TestProject(String name) throws Exception {
fTestProject= JavaProjectHelper.createJavaProject(name, "bin");
// we must make sure that the performance test are compatible to 2.1.3 & 3.0 so use rt13
Assert.assertTrue("rt not found", JavaProjectHelper.addRTJar13(fTestProject) != null);
fSourceFolder= JavaProjectHelper.addSourceContainer(fTestProject, "src");
}
public IJavaProject getProject() {
return fTestProject;
}
public IPackageFragmentRoot getSourceFolder() {
return fSourceFolder;
}
public void delete() throws Exception {
if (fTestProject != null && fTestProject.exists())
JavaProjectHelper.delete(fTestProject);
}
}