blob: e87c4fe07d0c4c1cb60d8887436b82f8a1034177 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2012 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
* Broadcom Corp. - build configurations
*******************************************************************************/
package org.eclipse.core.tests.internal.builders;
import junit.framework.*;
public class AllTests extends TestCase {
public AllTests() {
super(null);
}
public AllTests(String name) {
super(name);
}
public static Test suite() {
TestSuite suite = new TestSuite(AllTests.class.getName());
suite.addTest(BuilderCycleTest.suite());
suite.addTest(BuilderEventTest.suite());
suite.addTest(BuilderNatureTest.suite());
suite.addTest(BuilderTest.suite());
suite.addTest(BuildDeltaVerificationTest.suite());
suite.addTest(CustomBuildTriggerTest.suite());
suite.addTest(EmptyDeltaTest.suite());
suite.addTest(MultiProjectBuildTest.suite());
suite.addTest(RelaxedSchedRuleBuilderTest.suite());
suite.addTest(BuildConfigurationsTest.suite());
suite.addTest(BuildContextTest.suite());
return suite;
}
}