blob: 42cad36b910f2c3779b86fe202a60aa436393b91 [file] [log] [blame]
/*
* Copyright (c) 1998, 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:
// Oracle - initial API and implementation from Oracle TopLink
package org.eclipse.persistence.testing.jaxb.xmladapter.compositedirectcollection;
import java.util.ArrayList;
import org.eclipse.persistence.testing.jaxb.JAXBWithJSONTestCases;
import org.eclipse.persistence.testing.jaxb.xmladapter.direct.MyCalendarType;
public class XmlAdapterCompositeDirectCollectionTestCases extends JAXBWithJSONTestCases {
private final static String XML_RESOURCE = "org/eclipse/persistence/testing/jaxb/xmladapter/compositedirectcollection.xml";
private final static String JSON_RESOURCE = "org/eclipse/persistence/testing/jaxb/xmladapter/compositedirectcollection.json";
private final static int DAY_1 = 12;
private final static int MONTH_1 = 4;
private final static int YEAR_1 = 1997;
private final static int DAY_2 = 11;
private final static int MONTH_2 = 6;
private final static int YEAR_2 = 2006;
public XmlAdapterCompositeDirectCollectionTestCases(String name) throws Exception {
super(name);
setControlDocument(XML_RESOURCE);
setControlJSON(JSON_RESOURCE);
Class[] classes = new Class[2];
classes[0] = MyCalendar.class;
classes[1] = MyCalendarType.class;
setClasses(classes);
}
@Override
protected Object getControlObject() {
MyCalendarType mcType = new MyCalendarType();
mcType.day = DAY_1;
mcType.month = MONTH_1;
mcType.year = YEAR_1;
MyCalendarType mcType2 = new MyCalendarType();
mcType2.day = DAY_2;
mcType2.month = MONTH_2;
mcType2.year = YEAR_2;
MyCalendar myCal = new MyCalendar();
myCal.date = new ArrayList<MyCalendarType>();
myCal.date.add(mcType);
myCal.date.add(mcType2);
return myCal;
}
}