blob: 1eacaf9eb8e97ff0a8ee2b49d07a36dd8363fd5e [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;
import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;
import org.eclipse.jpt.jaxb.eclipselink.core.tests.internal.ELJaxbCoreTests;
import org.eclipse.jpt.jaxb.eclipselink.core.tests.internal.context.java.ELJaxbCoreJavaContextModelTests;
public class ELJaxbCoreContextModelTests extends TestCase
{
public static Test suite() {
TestSuite suite = new TestSuite(ELJaxbCoreContextModelTests.class.getName());
if (ELJaxbCoreTests.requiredJarsExists()) {
// suite.addTestSuite(GenericContextRootTests.class);
suite.addTest(ELJaxbCoreJavaContextModelTests.suite());
}
else {
suite.addTest(TestSuite.warning(ELJaxbCoreTests.buildMissingJarErrorMessage()));
}
return suite;
}
private ELJaxbCoreContextModelTests() {
super();
throw new UnsupportedOperationException();
}
}