blob: 3cd149869ea36a2234d4bc3739d433b253ab78a5 [file] [log] [blame]
/*
* Copyright (c) 2011, 2021 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:
// dmccann - September 14/2009 - 2.2 - Initial implementation
package org.eclipse.persistence.testing.jaxb.annotations.xmljoinnode;
import java.util.ArrayList;
import org.eclipse.persistence.testing.jaxb.JAXBWithJSONTestCases;
public class XmlJoinNodeTestCases extends JAXBWithJSONTestCases {
private static final String XML_RESOURCE = "org/eclipse/persistence/testing/jaxb/annotations/xmljoinnode/company.xml";
private static final String JSON_RESOURCE = "org/eclipse/persistence/testing/jaxb/annotations/xmljoinnode/company.json";
public XmlJoinNodeTestCases(String name) throws Exception {
super(name);
setClasses(new Class[]{ Company.class });
setControlDocument(XML_RESOURCE);
setControlJSON(JSON_RESOURCE);
}
@Override
public Object getControlObject() {
Address ottawa100 = new Address(100, "45 O'Connor St.", "400", "Ottawa", "K1P1A4");
Address ottawa200 = new Address(200, "1 Anystreet Rd.", "9", "Ottawa", "K4P1A2");
Address kanata100 = new Address(100, "99 Some St.", "1001", "Kanata", "K0A3m0");
Employee emp101 = new Employee(101, ottawa100);
Employee emp102 = new Employee(102, kanata100);
ArrayList<Employee> empList = new ArrayList<Employee>();
empList.add(emp101);
empList.add(emp102);
ArrayList<Address> addList = new ArrayList<Address>();
addList.add(kanata100);
addList.add(ottawa100);
addList.add(ottawa200);
return new Company(empList, addList);
}
}