blob: 430f4697560093c0ac91543b606c15e5deba9c2c [file] [log] [blame]
/**********************************************************************
* Copyright (c) 2000,2002 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v0.5
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v05.html
*
* Contributors:
* IBM - Initial API and implementation
**********************************************************************/
package org.eclipse.core.tests.resources;
import junit.framework.*;
/**
* Runs the sniff tests for the build. All tests listed here should
* be automated.
*/
public class AutomatedTests extends TestCase {
public AutomatedTests() {
super(null);
}
public AutomatedTests(String name) {
super(name);
}
public static Test suite() {
TestSuite suite = new TestSuite();
suite.addTest(org.eclipse.core.tests.internal.builders.AllTests.suite());
suite.addTest(org.eclipse.core.tests.internal.dtree.AllTests.suite());
suite.addTest(org.eclipse.core.tests.internal.indexing.AllTests.suite());
suite.addTest(org.eclipse.core.tests.internal.localstore.AllTests.suite());
suite.addTest(org.eclipse.core.tests.internal.properties.AllTests.suite());
suite.addTest(org.eclipse.core.tests.internal.resources.AllTests.suite());
suite.addTest(org.eclipse.core.tests.internal.utils.AllTests.suite());
suite.addTest(org.eclipse.core.tests.internal.watson.AllTests.suite());
suite.addTest(org.eclipse.core.tests.resources.AllTests.suite());
suite.addTest(org.eclipse.core.tests.resources.regression.AllTests.suite());
return suite;
}
}