blob: c894b22c9f4e26c3547bbf7b8b3ba4f2c9e59b65 [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.directtofield.typeattribute;
import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;
import org.eclipse.persistence.testing.oxm.mappings.directtofield.typeattribute.*;
public class TypeAttributeTestCases extends TestCase {
public static Test suite() {
TestSuite suite = new TestSuite("TypeAttribute Test Cases");
suite.addTestSuite(TypeAttributeStringTestCases.class);
suite.addTestSuite(TypeAttributeIntegerTestCases.class);
suite.addTestSuite(TypeAttributeFloatTestCases.class);
suite.addTestSuite(TypeAttributeDoubleTestCases.class);
suite.addTestSuite(TypeAttributeDateTimeTestCases.class);
suite.addTestSuite(TypeAttributeDateTestCases.class);
suite.addTestSuite(TypeAttributeTimeTestCases.class);
suite.addTestSuite(TypeAttributeCustomAddTestCases.class);
suite.addTestSuite(TypeAttributeNonXsiPrefixTestCases.class);
suite.addTestSuite(TypeAttributeNullTestCases.class);
suite.addTestSuite(TypeAttributeUserTypeNamespaceOnChildTestCases.class);
suite.addTestSuite(TypeAttributeUserTypeNamespaceOnParentTestCases.class);
return suite;
}
public static void main(String[] args) {
String[] arguments = { "-c", "org.eclipse.persistence.testing.oxm.mappings.directtofield.typeattribute.TypeAttributeTestCases" };
junit.textui.TestRunner.main(arguments);
}
}