blob: 10a8dba39e11e6ec5c89505ef4a78397b07cf3a2 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009 Oracle. 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:
* Oracle - initial API and implementation
******************************************************************************/
package org.eclipse.jpt.utility.tests.internal.iterables;
import junit.framework.Test;
import junit.framework.TestSuite;
/**
* decentralize test creation code
*/
public class JptUtilityIterablesTests {
public static Test suite() {
TestSuite suite = new TestSuite(JptUtilityIterablesTests.class.getPackage().getName());
suite.addTestSuite(ArrayIterableTests.class);
return suite;
}
private JptUtilityIterablesTests() {
super();
throw new UnsupportedOperationException();
}
}