blob: baf0eba59a9174578e6f3304cfdf8cb30f62aac8 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007 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.eclipselink.core.tests.internal.resource;
import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;
import org.eclipse.jpt.eclipselink.core.tests.internal.resource.java.JptEclipseLinkCoreJavaResourceModelTests;
import org.eclipse.jpt.eclipselink.core.tests.internal.resource.orm.EclipseLinkOrmResourceModelTests;
public class JptEclipselinkCoreResourceModelTests extends TestCase
{
public static Test suite() {
return suite(true);
}
public static Test suite(boolean all) {
TestSuite suite = new TestSuite(JptEclipselinkCoreResourceModelTests.class.getName());
suite.addTest(JptEclipseLinkCoreJavaResourceModelTests.suite(all));
suite.addTestSuite(EclipseLinkOrmResourceModelTests.class);
return suite;
}
private JptEclipselinkCoreResourceModelTests() {
super();
throw new UnsupportedOperationException();
}
}