blob: 960128bc33900e453bf874c2ed56e66229b90ae5 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2010 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_0.resource.java;
import junit.framework.Test;
import junit.framework.TestSuite;
public class JptEclipseLink2_0CoreJavaResourceModelTests {
public static Test suite() {
TestSuite suite = new TestSuite(JptEclipseLink2_0CoreJavaResourceModelTests.class.getName());
suite.addTestSuite(MapKeyConvertAnnotationTests.class);
return suite;
}
private JptEclipseLink2_0CoreJavaResourceModelTests() {
super();
throw new UnsupportedOperationException();
}
}