blob: 6735bdc6c26587a08c5f88c5218264d013dbcaa7 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2009 Tasktop Technologies 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:
* Tasktop Technologies - initial API and implementation
*******************************************************************************/
package org.eclipse.mylyn.tests;
import org.eclipse.mylyn.builds.tests.AllBuildsTests;
import org.eclipse.mylyn.cdt.tests.AllCdtTests;
import org.eclipse.mylyn.commons.notifications.tests.AllNotificationsTests;
import org.eclipse.mylyn.commons.sdk.util.ManagedTestSuite;
import org.eclipse.mylyn.commons.sdk.util.TestConfiguration;
import org.eclipse.mylyn.commons.tests.AllCommonsTests;
import org.eclipse.mylyn.context.tasks.tests.AllContextTasksTests;
import org.eclipse.mylyn.context.tests.AllContextTests;
import org.eclipse.mylyn.discovery.tests.AllDiscoveryTests;
import org.eclipse.mylyn.ide.tests.AllIdeTests;
import org.eclipse.mylyn.java.tests.AllJavaTests;
import org.eclipse.mylyn.monitor.tests.AllMonitorTests;
import org.eclipse.mylyn.resources.tests.AllResourcesTests;
import org.eclipse.mylyn.reviews.tests.AllReviewsTests;
import org.eclipse.mylyn.tasks.tests.AllTasksTests;
import org.eclipse.mylyn.team.tests.AllTeamTests;
import org.eclipse.mylyn.tests.integration.AllIntegrationTests;
import org.eclipse.mylyn.tests.misc.AllMiscTests;
import junit.framework.Test;
import junit.framework.TestSuite;
/**
* @author Shawn Minto
* @author Steffen Pingel
*/
public class AllNonConnectorTests {
public static Test suite() {
TestSuite suite = new ManagedTestSuite(AllNonConnectorTests.class.getName());
addTests(suite, TestConfiguration.getDefault());
return suite;
}
static void addTests(TestSuite suite, TestConfiguration configuration) {
suite.addTest(AllIntegrationTests.suite());
suite.addTest(AllCommonsTests.suite(configuration));
suite.addTest(AllNotificationsTests.suite());
suite.addTest(AllContextTests.suite());
suite.addTest(AllContextTasksTests.suite());
suite.addTest(AllDiscoveryTests.suite(configuration));
suite.addTest(AllJavaTests.suite());
suite.addTest(AllCdtTests.suite());
suite.addTest(AllMonitorTests.suite());
suite.addTest(AllIdeTests.suite());
suite.addTest(AllTasksTests.suite(configuration));
suite.addTest(AllBuildsTests.suite());
suite.addTest(AllReviewsTests.suite());
suite.addTest(AllResourcesTests.suite());
suite.addTest(AllTeamTests.suite());
suite.addTest(AllMiscTests.suite());
}
}