blob: 7ab8a497680040ff927c7e994b1dfede53e0d1f5 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006 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.ltk.core.refactoring.tests.scripting;
import junit.framework.Test;
import junit.framework.TestSuite;
public class RefactoringScriptingTests {
public static Test suite() {
TestSuite suite= new TestSuite("All LTK Refactoring Scripting Tests"); //$NON-NLS-1$
suite.addTestSuite(RefactoringScriptApplicationTests.class);
return suite;
}
}