blob: e92e18ce8061166dfde68c3a94d06a03cbc010e0 [file] [log] [blame]
/*
* Copyright (c) 1998, 2020 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0,
* or the Eclipse Distribution License v. 1.0 which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
*/
// Contributors:
// Oracle - initial API and implementation from Oracle TopLink
package org.eclipse.persistence.testing.tests.jpa.xml;
import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;
import org.eclipse.persistence.testing.tests.jpa.TestingProperties;
import org.eclipse.persistence.testing.tests.jpa.xml.advanced.EntityMappingsAdvancedJUnitTestCase;
import org.eclipse.persistence.testing.tests.jpa.xml.advanced.EntityMappingsMultiTenantServerTestSuite;
import org.eclipse.persistence.testing.tests.jpa.xml.complexaggregate.EntityMappingsComplexAggregateJUnitTestCase;
import org.eclipse.persistence.testing.tests.jpa.xml.inheritance.EntityMappingsInheritanceJUnitTestCase;
import org.eclipse.persistence.testing.tests.jpa.xml.inherited.EntityMappingsInheritedJUnitTestCase;
import org.eclipse.persistence.testing.tests.jpa.xml.relationships.EntityMappingsRelationshipsJUnitTestCase;
import org.eclipse.persistence.testing.tests.jpa.xml.relationships.unidirectional.EntityMappingsUnidirectionalRelationshipsJUnitTestCase;
import org.eclipse.persistence.testing.tests.jpa.xml.merge.EntityMappingsMergeServerJUnitTestSuite;
/**
* JUnit test suite XML metadata configurations.
*/
public class EntityMappingsServerJUnitTestSuite extends TestCase {
public static Test suite() {
return suite(TestingProperties.getProperty(TestingProperties.ORM_TESTING, TestingProperties.JPA_ORM_TESTING));
}
public static Test suite(String testing) {
TestSuite suite = new TestSuite("XML Entity Mappings JUnit Test Suite");
if (testing.equals(TestingProperties.JPA_ORM_TESTING)) {
suite.addTest(EntityMappingsAdvancedJUnitTestCase.suite());
suite.addTest(EntityMappingsMultiTenantServerTestSuite.suite());
suite.addTest(EntityMappingsRelationshipsJUnitTestCase.suite());
suite.addTest(EntityMappingsUnidirectionalRelationshipsJUnitTestCase.suite());
suite.addTest(EntityMappingsInheritanceJUnitTestCase.suite());
suite.addTest(EntityMappingsInheritedJUnitTestCase.suite());
suite.addTest(EntityMappingsMergeServerJUnitTestSuite.suite());
// un-comment the following line to be able to test 260271 without the orm.testing property
//suite.addTest(EntityMappingsComplexAggregateJUnitTestCase.suite());
} else if (testing.equals(TestingProperties.ECLIPSELINK_ORM_TESTING)) { // In the testing browser use -Dorm.testing=eclipselink
suite.addTest(EntityMappingsAdvancedJUnitTestCase.suite());
suite.addTest(EntityMappingsMultiTenantServerTestSuite.suite());
suite.addTest(EntityMappingsRelationshipsJUnitTestCase.suite());
suite.addTest(EntityMappingsComplexAggregateJUnitTestCase.suite());
}
return suite;
}
}