blob: 719d0195f7574ae104b31de80658e29ed5d3cae4 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012, 2015 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.common.utility.tests.internal.reference;
import junit.framework.Test;
import junit.framework.TestSuite;
/**
* decentralize test creation code
*/
public class JptCommonUtilityReferenceTests {
public static Test suite() {
TestSuite suite = new TestSuite(JptCommonUtilityReferenceTests.class.getPackage().getName());
suite.addTestSuite(AbstractBooleanReferenceTests.class);
suite.addTestSuite(SimpleBooleanReferenceTests.class);
suite.addTestSuite(SimpleIntReferenceTests.class);
suite.addTestSuite(SimpleObjectReferenceTests.class);
suite.addTestSuite(SynchronizedBooleanTests.class);
suite.addTestSuite(SynchronizedIntTests.class);
suite.addTestSuite(SynchronizedObjectTests.class);
return suite;
}
private JptCommonUtilityReferenceTests() {
super();
throw new UnsupportedOperationException();
}
}