blob: 136a006f90130b93080e9cff83d5f7fa9cc124c7 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012, 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.Java1d7Setup;
/**
* Those tests should run on Java Dolphin 1.7 .
*/
@IgnoreInheritedTests
@RunWith(CustomBaseRunner.class)
public class IntroduceParameterTests1d7 extends IntroduceParameterTests {
public IntroduceParameterTests1d7() {
super(new Java1d7Setup());
}
@Test
public void testSimple17_Catch1() throws Exception {
performOK();
}
@Test
public void testSimple17_Catch2() throws Exception {
performOK();
}
@Test
public void testSimple17_NewInstance2() throws Exception {
performOK();
}
@Test
public void testSimple17_NewInstance3() throws Exception {
performOK();
}
@Test
public void testSimple17_NewInstance4() throws Exception {
performOK();
}
}