blob: bc0fa271b99d93614306babf8b038f420334be1c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011 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.jpa.eclipselink.core.tests.internal.v2_3.context.orm;
import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;
public class JptEclipseLink2_3OrmContextModelTests extends TestCase
{
public static Test suite() {
TestSuite suite = new TestSuite(JptEclipseLink2_3OrmContextModelTests.class.getName());
suite.addTestSuite(OrmEclipseLinkMultitenancyTests.class);
return suite;
}
private JptEclipseLink2_3OrmContextModelTests() {
super();
throw new UnsupportedOperationException();
}
}