blob: 094e602fd3f265ced348d369c4ea48480ff26b1f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2011 Attensity Europe GmbH and brox IT Solutions GmbH. 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: Juergen Schumacher (Attensity Europe GmbH) - initial API and implementation
*******************************************************************************/
package org.eclipse.smila.importing.state.objectstore.test;
import junit.framework.Test;
import junit.framework.TestSuite;
/**
* Test suite for org.eclipse.smila.importing.state.objectstore. bundle.
*/
public final class AllTests {
/** name of test bundle. */
public static final String BUNDLE_ID = "org.eclipse.smila.importing.state.objectstore.test";
/** Private default Constructor to avoid instance creation. */
private AllTests() {
}
/**
* Creates test suite.
*/
public static Test suite() {
final TestSuite suite = new TestSuite("Tests for org.eclipse.smila.importing.state.objectstore.test bundle");
suite.addTestSuite(TestStateStoreConfiguration.class);
suite.addTestSuite(TestObjectStoreDeltaService.class);
suite.addTestSuite(TestObjectStoreVisitedLinksService.class);
suite.addTestSuite(TestHttpHandlers.class);
return suite;
}
}