blob: cf843f24632ae24ecd611740f89eed3e9599c172 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2009 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.core.tests.internal.context;
import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;
import org.eclipse.jpt.core.tests.internal.context.java.JptCoreContextJavaModelTests;
import org.eclipse.jpt.core.tests.internal.context.orm.JptCoreOrmContextModelTests;
import org.eclipse.jpt.core.tests.internal.context.persistence.JptCorePersistenceContextModelTests;
public class JptCoreContextModelTests extends TestCase
{
public static Test suite() {
TestSuite suite = new TestSuite(JptCoreContextModelTests.class.getName());
suite.addTestSuite(JpaProjectTests.class);
suite.addTestSuite(JpaFileTests.class);
suite.addTest(JptCorePersistenceContextModelTests.suite());
suite.addTest(JptCoreOrmContextModelTests.suite());
suite.addTest(JptCoreContextJavaModelTests.suite());
return suite;
}
private JptCoreContextModelTests() {
super();
throw new UnsupportedOperationException();
}
}