blob: 9984a0ad9ef034718221b94084907a974772820a [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: Drazen Cindric (Attensity Europe GmbH) - initial implementation
**********************************************************************************************************************/
package org.eclipse.smila.clusterconfig.test;
import junit.framework.Test;
import junit.framework.TestSuite;
/**
* Suite combining the cluster configuration bundle tests.
*
*/
public final class AllTests {
public static final String BUNDLE_ID = "org.eclipse.smila.clusterconfig.test";
/**
* utility class, do not create instances.
*/
private AllTests() {
; // nothing
}
/**
* @return suite for all org.eclipse.smila.clusterconfig tests
*/
public static Test suite() {
final TestSuite suite = new TestSuite(BUNDLE_ID);
// $JUnit-BEGIN$
/* add a new suite for every test class you'll create here...: suite.addTestSuite(TestWhatSoEver.class); */
suite.addTestSuite(TestClusterConfig.class);
// $JUnit-END$
return suite;
}
}