/******************************************************************************* * Copyright (c) 2012, 2015 -2014 Oracle. All rights reserved. * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 and Eclipse Distribution License v. 1.0 * which accompanies this distribution. * The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html * and the Eclipse Distribution License is available at * http://www.eclipse.org/org/documents/edl-v10.php. * * Contributors: * Matt MacIvor - 2.4 - Initial Implementation ******************************************************************************/ package org.eclipse.persistence.testing.jaxb; import junit.framework.Test; import junit.framework.TestCase; import junit.framework.TestSuite; import org.eclipse.persistence.testing.jaxb.annotations.xmlaccessorfactory.ClassLevelAccessorTestCases; import org.eclipse.persistence.testing.jaxb.annotations.xmlaccessorfactory.PackageLevelAccessorTestCases; import org.eclipse.persistence.testing.jaxb.annotations.xmlaccessorfactory.XmlAccessorFactorySupportTestCases; import org.eclipse.persistence.testing.jaxb.cycle.CycleRecoverableTestCases; import org.eclipse.persistence.testing.jaxb.cycle.inverse.InverseTestCases; import org.eclipse.persistence.testing.jaxb.sun.charescape.NonELCharacterEscapeHandlerTestCases; import org.eclipse.persistence.testing.jaxb.sun.idresolver.NonELIDResolverTestCases; import org.eclipse.persistence.testing.jaxb.sun.prefixmapper.NonELPrefixMapperTestCases; import org.eclipse.persistence.testing.jaxb.sun.xmllocation.XmlLocationTestSuite; public class SunCompatibilityTestSuite extends TestCase { public static Test suite() { TestSuite suite = new TestSuite("Sun Compatability Test Suite"); suite.addTestSuite(CycleRecoverableTestCases.class); suite.addTestSuite(InverseTestCases.class); suite.addTestSuite(ClassLevelAccessorTestCases.class); suite.addTestSuite(PackageLevelAccessorTestCases.class); suite.addTestSuite(NonELIDResolverTestCases.class); suite.addTestSuite(org.eclipse.persistence.testing.jaxb.sun.idresolver.collection.NonELIDResolverTestCases.class); suite.addTestSuite(NonELCharacterEscapeHandlerTestCases.class); // depends on jaxb-impl.jar suite.addTestSuite(NonELPrefixMapperTestCases.class); // depends on jaxb-impl.jar suite.addTest(XmlLocationTestSuite.suite()); // depends on jaxb-impl.jar suite.addTestSuite(XmlAccessorFactorySupportTestCases.class); // depends on jaxb-impl.jar return suite; } }