blob: 2474394eb2c7c488cd50056a89c58dab2d3b3e64 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2012 Oracle. All rights reserved.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0, which accompanies this distribution
* and is available at https://www.eclipse.org/legal/epl-2.0/.
*
* Contributors:
* Oracle - initial API and implementation
******************************************************************************/
package org.eclipse.jpt.common.utility.tests.internal.enumeration;
import junit.framework.Test;
import junit.framework.TestSuite;
/**
* decentralize test creation code
*/
public class JptCommonUtilityEnumerationTests {
public static Test suite() {
TestSuite suite = new TestSuite(JptCommonUtilityEnumerationTests.class.getPackage().getName());
suite.addTestSuite(EmptyEnumerationTests.class);
suite.addTestSuite(EnumerationToolsTests.class);
suite.addTestSuite(IteratorEnumerationTests.class);
return suite;
}
private JptCommonUtilityEnumerationTests() {
super();
throw new UnsupportedOperationException();
}
}