/******************************************************************************* * Copyright (c) 1998, 2015 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 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: * mmacivor - June 05/2008 - 1.0 - Initial implementation ******************************************************************************/ package org.eclipse.persistence.testing.jaxb.xmlelementref; import java.util.ArrayList; import javax.xml.bind.JAXBElement; import javax.xml.namespace.QName; import org.eclipse.persistence.testing.jaxb.JAXBTestCases; import org.eclipse.persistence.testing.jaxb.JAXBWithJSONTestCases; public class EmployeeCollectionTestCases extends JAXBWithJSONTestCases { private final static String XML_RESOURCE = "org/eclipse/persistence/testing/jaxb/xmlelementref/employee-collection.xml"; private final static String JSON_RESOURCE = "org/eclipse/persistence/testing/jaxb/xmlelementref/employee-collection.json"; public EmployeeCollectionTestCases(String name) throws Exception { super(name); setControlDocument(XML_RESOURCE); setControlJSON(JSON_RESOURCE); Class[] classes = new Class[1]; classes[0] = TestObjectFactory.class; setClasses(classes); } protected Object getJSONReadControlObject(){ //same as getReadControl Except order is different EmployeeCollection employee = new EmployeeCollection(); ArrayList choices = new ArrayList(); choices.add(new JAXBElement(new QName("myns", "integer-root"), Integer.class, new Integer(21))); choices.add(new JAXBElement(new QName("root"), String.class, "Value1")); choices.add(new JAXBElement(new QName("root"), String.class, "Value2")); EmployeeCollection nestedEmployee = new EmployeeCollection(); nestedEmployee.refs = new ArrayList(); nestedEmployee.refs.add(new JAXBElement(new QName("myns", "integer-root"), Integer.class, new Integer(29))); choices.add(nestedEmployee); employee.refs = choices; return employee; } protected Object getControlObject() { EmployeeCollection employee = new EmployeeCollection(); ArrayList choices = new ArrayList(); choices.add(new JAXBElement(new QName("myns", "integer-root"), Integer.class, new Integer(21))); choices.add(new JAXBElement(new QName("root"), String.class, "Value1")); EmployeeCollection nestedEmployee = new EmployeeCollection(); nestedEmployee.refs = new ArrayList(); nestedEmployee.refs.add(new JAXBElement(new QName("myns", "integer-root"), Integer.class, new Integer(29))); choices.add(nestedEmployee); choices.add(new JAXBElement(new QName("root"), String.class, "Value2")); employee.refs = choices; return employee; } }