blob: c8835e821cb3b13cf95f0f108200c0b11fc21849 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.ui.tests.refactoring;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.eclipse.jdt.ui.tests.CustomBaseRunner;
import org.eclipse.jdt.ui.tests.IgnoreInheritedTests;
import org.eclipse.jdt.ui.tests.refactoring.rules.Java1d7Setup;
/**
* Those tests should run on Java Dolphin 1.7 .
*/
@IgnoreInheritedTests
@RunWith(CustomBaseRunner.class)
public class ExtractConstantTests1d7 extends ExtractConstantTests {
public ExtractConstantTests1d7() {
super(new Java1d7Setup());
}
@Override
protected String getTestFileName(boolean canExtract, boolean input) {
StringBuilder fileName= new StringBuilder(TEST_PATH_PREFIX).append(getRefactoringPath());
fileName.append(canExtract ? "canExtract17/" : "cannotExtract17/");
return fileName.append(getSimpleTestFileName(canExtract, input)).toString();
}
//--- TESTS
// -- testing failing preconditions
@Override
@Test
public void testFail0() throws Exception{
failHelper1(10, 14, 10, 56, true, true, "CONSTANT");
}
}