blob: 7de55f3d9d1805c74d67ac00a9c3ad8a1a0e192c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2012 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.core.tests.resources.perf;
import junit.framework.Test;
import junit.framework.TestSuite;
/**
* @since 3.1
*/
public class AllTests extends TestSuite {
public static Test suite() {
TestSuite suite = new TestSuite(AllTests.class.getName());
suite.addTest(BenchFileStore.suite());
suite.addTest(BenchWorkspace.suite());
suite.addTest(BenchMiscWorkspace.suite());
suite.addTest(BuilderPerformanceTest.suite());
suite.addTest(MarkerPerformanceTest.suite());
suite.addTest(LocalHistoryPerformanceTest.suite());
suite.addTest(WorkspacePerformanceTest.suite());
suite.addTest(PropertyManagerPerformanceTest.suite());
suite.addTest(FileSystemPerformanceTest.suite());
// these tests are flawed - see bug 57137
// suite.addTest(ContentDescriptionPerformanceTest.suite());
return suite;
}
}