blob: 8e8e3f15f4650f9cb081899b5c6ad2bff5de69ff [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2011 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;
import junit.framework.Test;
import junit.framework.TestSuite;
import org.eclipse.ltk.core.refactoring.tests.history.RefactoringHistoryTests;
import org.eclipse.ltk.core.refactoring.tests.participants.ParticipantTests;
import org.eclipse.ltk.core.refactoring.tests.resource.ResourceRefactoringTests;
import org.eclipse.ltk.core.refactoring.tests.scripting.RefactoringScriptingTests;
public class AllTests {
public static Test suite() {
TestSuite suite= new TestSuite("All LTK Refactoring Core Tests"); //$NON-NLS-1$
suite.addTestSuite(RefactoringContextTest.class);
suite.addTest(ParticipantTests.suite());
suite.addTest(RefactoringHistoryTests.suite());
suite.addTest(RefactoringScriptingTests.suite());
suite.addTest(ResourceRefactoringTests.suite());
return suite;
}
}