blob: 3414a7ed792806e3383af3f29ade25bae849f91d [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.internal.indexing;
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();
suite.addTest(IntegratedFieldTest.suite());
suite.addTest(IntegratedIndexedStoreTest.suite());
suite.addTest(IntegratedObjectStoreTest.suite());
suite.addTest(IntegratedPageStoreTest.suite());
return suite;
}
}