blob: 2918aa360a7366e9f3fac2ef2ecc649eb48e1a80 [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.binarydata;
import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;
import org.eclipse.persistence.testing.oxm.mappings.binarydata.identifiedbyname.BinaryDataByteObjectArrayTestCases;
import org.eclipse.persistence.testing.oxm.mappings.binarydata.identifiedbyname.BinaryDataIdentifiedByNameEmptyNSRNillableTestCases;
import org.eclipse.persistence.testing.oxm.mappings.binarydata.identifiedbyname.BinaryDataIdentifiedByNameEmptyNSRTestCases;
import org.eclipse.persistence.testing.oxm.mappings.binarydata.identifiedbyname.BinaryDataIdentifiedByNameNullNSRTestCases;
import org.eclipse.persistence.testing.oxm.mappings.binarydata.identifiedbyname.BinaryDataIdentifiedByNameXOPonNSRTestCases;
import org.eclipse.persistence.testing.oxm.mappings.binarydata.identifiedbyname.BinaryDataIdentifiedByNameNullTestCases;
public class XMLBinaryDataMappingTestSuite extends TestCase {
public static Test suite() {
TestSuite suite = new TestSuite("XMLBinaryDataMapping Test Suite");
suite.addTestSuite(BinaryDataIdentifiedByNameXOPonNSRTestCases.class);
// expect: Exception Description: An error occurred trying to resolve the namespace URI for xop:Include. A namespace resolver was not specified on the descriptor.
suite.addTestSuite(BinaryDataIdentifiedByNameNullNSRTestCases.class);
// expect: Exception Description: A namespace for the prefix ns0:Include was not found in the namespace resolver.
suite.addTestSuite(BinaryDataIdentifiedByNameEmptyNSRTestCases.class);
suite.addTestSuite(BinaryDataIdentifiedByNameEmptyNSRNillableTestCases.class);
suite.addTestSuite(BinaryDataIdentifiedByNameNullTestCases.class);
suite.addTestSuite(BinaryDataEmptyElementTestCases.class);
suite.addTestSuite(BinaryDataEmptyElementEmptyNodeFalseTestCases.class);
suite.addTestSuite(BinaryDataSelfTestCases.class);
suite.addTestSuite(BinaryDataSelfDataHandlerTestCases.class);
suite.addTestSuite(BinaryDataByteObjectArrayTestCases.class);
suite.addTestSuite(BinaryDataCompositeSelfTestCases.class);
suite.addTestSuite(BinaryDataCompositeSelfNillableTestCases.class);
suite.addTestSuite(BinaryDataInlineTestCases.class);
suite.addTestSuite(BinaryDataInlineNillableTestCases.class);
suite.addTestSuite(BinaryDataAbsentElementTestCases.class);
return suite;
}
public static void main(String[] args) {
String[] arguments = { "-c", "org.eclipse.persistence.testing.oxm.mappings.binarydata.XMLBinaryDataMappingTestSuite" };
//System.setProperty("useDeploymentXML", "true");
//System.setProperty("useDocPres", "true");
//System.setProperty("useLogging", "true");
//System.setProperty("useSAXParsing", "true");
junit.textui.TestRunner.main(arguments);
}
}