blob: 9f652039717021cf9dd33684559e9c6a8b5c3ce2 [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;
public class InlineMethodTests18 extends InlineMethodTests {
private static InlineMethodTestSetup18 fgTestSetup;
public InlineMethodTests18(String name) {
super(name);
}
public static Test suite() {
fgTestSetup= new InlineMethodTestSetup18(new NoSuperTestsSuite(InlineMethodTests18.class));
return fgTestSetup;
}
public static Test setUpTest(Test someTest) {
fgTestSetup= new InlineMethodTestSetup18(someTest);
return fgTestSetup;
}
protected void performSimpleTest() throws Exception {
performTestInlineCall(fgTestSetup.getSimplePackage(), getName(), COMPARE_WITH_OUTPUT, "simple18_out");
}
//--- TESTS
public void testLambda1() throws Exception {
performSimpleTest();
}
}