blob: 007acaea2695f5439b2c3061d68c8e6779e1e68a [file] [log] [blame]
/*
* Copyright (c) 2018, 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
*/
package org.eclipse.persistence.testing.jaxb.externalizedmetadata.xmladapter.list;
import java.util.ArrayList;
import java.util.List;
import org.eclipse.persistence.testing.jaxb.JAXBWithJSONTestCases;
public class XmlAdapterListsTestCases extends JAXBWithJSONTestCases{
private static final String XML_RESOURCE = "org/eclipse/persistence/testing/jaxb/externalizedmetadata/xmladapter/list/multiplebar.xml";
private static final String JSON_RESOURCE = "org/eclipse/persistence/testing/jaxb/externalizedmetadata/xmladapter/list/multiplebar.json";
public XmlAdapterListsTestCases(String name) throws Exception {
super(name);
setClasses(new Class[]{FooWithBars.class, Bar.class});
setControlDocument(XML_RESOURCE);
setControlJSON(JSON_RESOURCE);
}
@Override
protected Object getControlObject() {
FooWithBars foo = new FooWithBars();
List<String> itemlist = new ArrayList<String>();
itemlist.add(MyAdapter.VAL0);
itemlist.add(MyAdapter.VAL1);
itemlist.add(MyAdapter.VAL2);
foo.items = itemlist;
return foo;
}
}