blob: b14d0a05f629ed2e7fcf2541425ed085053b92a2 [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.oxm.mappings;
import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;
import org.eclipse.persistence.testing.oxm.mappings.anycollection.XMLAnyCollectionMappingTestSuite;
import org.eclipse.persistence.testing.oxm.mappings.anyobject.XMLAnyObjectMappingTestSuite;
import org.eclipse.persistence.testing.oxm.mappings.anyobjectandanycollection.XMLAnyObjectAndAnyCollectionMappingTestSuite;
import org.eclipse.persistence.testing.oxm.mappings.compositecollection.CompositeCollectionMappingTestSuite;
import org.eclipse.persistence.testing.oxm.mappings.compositeobject.CompositeObjectMappingTestSuite;
import org.eclipse.persistence.testing.oxm.mappings.directtofield.DirectToFieldMappingTestSuite;
import org.eclipse.persistence.testing.oxm.mappings.directcollection.DirectCollectionMappingTestSuite;
import org.eclipse.persistence.testing.oxm.mappings.simpletypes.SimpleTypeMappingTestSuite;
import org.eclipse.persistence.testing.oxm.mappings.transformation.TransformationMappingTestSuite;
import org.eclipse.persistence.testing.oxm.mappings.typeddirect.TypedDirectMappingTestSuite;
import org.eclipse.persistence.testing.oxm.mappings.namespaces.NamespaceTestSuite;
import org.eclipse.persistence.testing.oxm.mappings.namespaces.identifiedbyname.IdentifiedByNameNamespaceTestSuite;
public class DeploymentXMLMappingTestSuite extends TestCase {
public DeploymentXMLMappingTestSuite(String name) {
super(name);
}
public static void main(String[] args) {
String[] arguments = { "-c", "org.eclipse.persistence.testing.oxm.mappings.DeploymentXMLMappingTestSuite" };
junit.textui.TestRunner.main(arguments);
}
public static Test suite(boolean xdkPlatform) {
TestSuite suite = new TestSuite("Deployment XML Mapping Test Suite");
suite.addTest(DirectToFieldMappingTestSuite.suite());
suite.addTest(CompositeObjectMappingTestSuite.suite());
suite.addTest(CompositeCollectionMappingTestSuite.suite());
suite.addTest(DirectCollectionMappingTestSuite.suite());
suite.addTest(TransformationMappingTestSuite.suite());
suite.addTest(TypedDirectMappingTestSuite.suite());
suite.addTest(SimpleTypeMappingTestSuite.suite());
suite.addTest(NamespaceTestSuite.suite());
suite.addTest(IdentifiedByNameNamespaceTestSuite.suite());
suite.addTest(XMLAnyObjectMappingTestSuite.suite());
suite.addTest(XMLAnyCollectionMappingTestSuite.suite());
/*
* See B5259059: NPE on anyObject mapping XPath null, anyCollection mapping XPath=filled
* The use cases are described in the doc b5259059_jaxb_factory_npe_DesignSpec_v2006nnnn.doc
*/
//suite.addTest(XMLAnyObjectAndAnyCollectionMappingTestSuite.suite());
return suite;
}
}