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