blob: 114fa03ed174c7b89cb8764eb0c0b234adc5d4c5 [file] [log] [blame]
/***********************************************************************************************************************
* Copyright (c) 2008 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)
**********************************************************************************************************************/
package org.eclipse.smila.common.test;
import junit.framework.Test;
import junit.framework.TestSuite;
/** Suite combining all tests for the common bundle. */
public final class AllTests {
/** utility class, do not create instances. */
private AllTests() {
}
/** @return suite for all common tests */
public static Test suite() {
final TestSuite suite = new TestSuite("Test for org.eclipse.smila.common");
// $JUnit-BEGIN$
suite.addTestSuite(TestNameValidator.class);
// $JUnit-END$
return suite;
}
}