blob: a3f633db6bc4cfe8617c77b60bb2cb8ec23905f3 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2019, 2020 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.Java13Setup;
@IgnoreInheritedTests
@RunWith(CustomBaseRunner.class)
public class ExtractConstantTests13 extends ExtractConstantTests {
public ExtractConstantTests13() {
super(new Java13Setup());
}
@Override
protected String getTestFileName(boolean canExtract, boolean input) {
StringBuilder fileName= new StringBuilder(TEST_PATH_PREFIX).append(getRefactoringPath());
fileName.append(canExtract ? "canExtract13/" : "cannotExtract13/");
return fileName.append(getSimpleTestFileName(canExtract, input)).toString();
}
//--- TESTS
@Override
@Test
public void test0() throws Exception {
helper1(6, 19, 9, 22, true, false, "CONSTANT", "STRING");
}
}