blob: 491a9e433c2a2743382093fff1146dbef03adabd [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 org.eclipse.jdt.ui.tests.refactoring.infra.RefactoringPerformanceTestCase;
public abstract class RepeatingRefactoringPerformanceTestCase extends RefactoringPerformanceTestCase {
protected TestProject fTestProject;
public RepeatingRefactoringPerformanceTestCase(String name) {
super(name);
}
public TestProject getTestProject() {
return fTestProject;
}
protected void executeRefactoring(int numberOfCus, int numberOfRefs, boolean measure, int redos) throws Exception {
for (int i= 0; i < redos; i++) {
try {
fTestProject= new TestProject();
doExecuteRefactoring(numberOfCus, numberOfRefs, measure);
} finally {
fTestProject.delete();
}
}
}
protected abstract void doExecuteRefactoring(int numberOfCus, int numberOfRefs, boolean measure) throws Exception;
}