/******************************************************************************* * 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: * Oracle - initial API and implementation from Oracle TopLink ******************************************************************************/ package org.eclipse.persistence.testing.jaxb.xmladapter.composite; import java.util.HashMap; import java.util.Map; import org.eclipse.persistence.jaxb.JAXBContextProperties; import org.eclipse.persistence.testing.jaxb.JAXBWithJSONTestCases; public class XmlAdapterCompositeTestCases extends JAXBWithJSONTestCases { private final static String XML_RESOURCE = "org/eclipse/persistence/testing/jaxb/xmladapter/composite.xml"; private final static String JSON_RESOURCE = "org/eclipse/persistence/testing/jaxb/xmladapter/composite.json"; private final static int ID_1 = 123; private final static int ID_2 = 321; private final static String VALUE_1 = "this is a value"; private final static String VALUE_2 = "this is another value"; public XmlAdapterCompositeTestCases(String name) throws Exception { super(name); setControlDocument(XML_RESOURCE); setControlJSON(JSON_RESOURCE); Class[] classes = new Class[1]; classes[0] = MyMap.class; setClasses(classes); } protected Object getControlObject() { MyMap myMap = new MyMap(); myMap.hashMap = new java.util.LinkedHashMap(); myMap.hashMap.put(ID_2, VALUE_2); myMap.hashMap.put(ID_1, VALUE_1); return myMap; } protected Map getProperties(){ Map props = new HashMap(); props.put(JAXBContextProperties.JSON_VALUE_WRAPPER, "val"); return props; } }