blob: 5f6d62b7209d43123091458954da82b86aa5bfbd [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008 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.eclipselink.core.tests.internal.caching;
import junit.framework.Test;
import junit.framework.TestSuite;
/**
* decentralize test creation code
*/
public class JptEclipseLinkCoreCachingTests
{
public static Test suite() {
TestSuite suite = new TestSuite(JptEclipseLinkCoreCachingTests.class.getPackage().getName());
suite.addTestSuite(CachingValueModelTests.class);
suite.addTestSuite(CachingAdapterTests.class);
return suite;
}
private JptEclipseLinkCoreCachingTests() {
super();
throw new UnsupportedOperationException();
}
}