blob: 4173818cfc93443999131f91c32d7c1662559532 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2014 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;
import junit.framework.Test;
import org.eclipse.jdt.core.ICompilationUnit;
import org.eclipse.jdt.core.IPackageFragmentRoot;
import org.eclipse.jdt.internal.corext.refactoring.surround.SurroundWithTryCatchRefactoring;
public class SurroundWithTests18 extends SurroundWithTests {
private static SurroundWithTestSetup18 fgTestSetup;
public SurroundWithTests18(String name) {
super(name);
}
public static Test suite() {
fgTestSetup= new SurroundWithTestSetup18(new NoSuperTestsSuite(SurroundWithTests18.class));
return fgTestSetup;
}
public static Test setUpTest(Test someTest) {
fgTestSetup= new SurroundWithTestSetup18(someTest);
return fgTestSetup;
}
protected IPackageFragmentRoot getRoot() {
return fgTestSetup.getRoot();
}
@Override
protected SurroundWithTryCatchRefactoring createRefactoring(ICompilationUnit unit) {
return SurroundWithTryCatchRefactoring.create(unit, getTextSelection(), true);
}
protected void tryCatchInvalidTest() throws Exception {
performTest(fgTestSetup.getTryCatchPackage(), getName(), "trycatch18_out", INVALID_SELECTION);
}
protected void tryCatchTest() throws Exception {
performTest(fgTestSetup.getTryCatchPackage(), getName(), "trycatch18_out", COMPARE_WITH_OUTPUT);
}
public void testSimple1() throws Exception {
tryCatchTest();
}
}