blob: c1a6f75334cbb6f8648b26c38f277113ce8d1b79 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010 University of Illinois at Urbana-Champaign 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:
* UIUC - Initial API and implementation
*******************************************************************************/
package org.eclipse.photran.internal.tests.refactoring;
import junit.framework.Test;
import org.eclipse.core.resources.IFile;
import org.eclipse.jface.text.TextSelection;
import org.eclipse.photran.internal.core.refactoring.TileLoopRefactoring;
import org.eclipse.photran.internal.tests.Activator;
import org.eclipse.photran.internal.tests.PhotranRefactoringTestSuiteFromMarkers;
/**
* Test suite for loop tiling refactoring
* @author Ashley Kasza
*/
public class TileLoopRefactoringTestSuite extends PhotranRefactoringTestSuiteFromMarkers<TileLoopRefactoring>
{
private static final String DIR = "refactoring-test-code/tile-loop";
public static Test suite() throws Exception
{
return new TileLoopRefactoringTestSuite();
}
public TileLoopRefactoringTestSuite() throws Exception
{
super(Activator.getDefault(),
"Running Loop Tiling refactoring in",
DIR,
TileLoopRefactoring.class);
}
@Override
protected boolean initializeRefactoring(TileLoopRefactoring refactoring,
IFile file,
TextSelection selection,
String[] markerText)
{
boolean result = super.initializeRefactoring(refactoring, file, selection, markerText);
String s = markerText[4]; //file field(s) are just before result
String s2 = markerText[5];
refactoring.setLoopTilingOffsetNumber(s);
refactoring.setLoopTilingStepNumber(s2);
//}
return result;
}
/** Prevents the compilation and running of tests we know don't preserve behavior */
@Override protected boolean shouldCompile(IFile fileContainingMarker)
{
return false;
}
}