blob: 558765a10bf5fa0345ac07dbf67b357cc7745271 [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:
// dtwelves - Sept 2008 creation of MOXy OXM SRG
package org.eclipse.persistence.testing.oxm;
import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestResult;
import junit.framework.TestSuite;
import org.eclipse.persistence.testing.oxm.inheritance.*;
import org.eclipse.persistence.testing.oxm.inheritance.typetests.TypeTestSuite;
import org.eclipse.persistence.testing.oxm.inheritance.classextractor.CarClassExtractorTestCases;
import org.eclipse.persistence.testing.oxm.xmlmarshaller.XMLMarshalTestCases;
import org.eclipse.persistence.testing.oxm.xmlmarshaller.XMLUnmarshalTestCases;
import org.eclipse.persistence.testing.oxm.descriptor.rootelement.RootElementTestSuite;
import org.eclipse.persistence.testing.oxm.xpathengine.XPathEngineTestSuite;
import org.eclipse.persistence.testing.oxm.xmllogin.XMLLoginTestSuite;
public class OXMSRGTestSuite extends TestCase {
public OXMSRGTestSuite(String name) {
super(name);
}
public static void main(String[] args) {
junit.textui.TestRunner.main(new String[] { "-c", "org.eclipse.persistence.testing.oxm.OXMSRGTestSuite" });
}
public static Test suite() {
TestSuite suite = new TestSuite("OXM SRG Test Suite");
suite.addTestSuite(XMLMarshalTestCases.class);
suite.addTestSuite(XMLUnmarshalTestCases.class);
suite.addTestSuite(InheritanceMissingDescriptorTestCases.class);
suite.addTestSuite(InheritanceCarTestCases.class);
suite.addTest(RootElementTestSuite.suite());
suite.addTest(XPathEngineTestSuite.suite());
suite.addTest(XMLLoginTestSuite.suite());
return suite;
}
}