blob: ddc02c141a23c7119dcfa3f394ba8814a158bf81 [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.context.java;
import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;
public class ELJaxbCoreJavaContextModelTests
extends TestCase {
public static Test suite() {
TestSuite suite = new TestSuite(ELJaxbCoreJavaContextModelTests.class.getName());
suite.addTestSuite(ELJavaXmlAttributeMappingTests.class);
suite.addTestSuite(ELJavaXmlElementMappingTests.class);
suite.addTestSuite(ELJavaXmlInverseReferenceMappingTests.class);
return suite;
}
private ELJaxbCoreJavaContextModelTests() {
super();
throw new UnsupportedOperationException();
}
}