blob: 403948f9b692bfb9da568d3c0930b7ec1d02c08d [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.jaxb.eclipselink.core.tests.internal;
import junit.framework.Test;
import junit.framework.TestSuite;
import org.eclipse.jpt.jaxb.eclipselink.core.tests.internal.resource.JaxbEclipseLinkCoreResourceModelTests;
public class JaxbEclipseLinkCoreTests {
public static Test suite() {
TestSuite suite = new TestSuite(JaxbEclipseLinkCoreTests.class.getPackage().getName());
suite.addTest(JaxbEclipseLinkCoreResourceModelTests.suite());
return suite;
}
private JaxbEclipseLinkCoreTests() {
super();
throw new UnsupportedOperationException();
}
}