blob: 71ac2b32fe6ee3c71d0dd3c2ee8a93d2c7719e00 [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:
// Denise Smith - 2.4
package org.eclipse.persistence.testing.jaxb.xmlelementref.notincontext;
import java.util.ArrayList;
import java.util.List;
import org.eclipse.persistence.testing.jaxb.JAXBWithJSONTestCases;
public class XmlElementRefNotGivenToContextTestCases extends JAXBWithJSONTestCases{
private final static String XML_RESOURCE = "org/eclipse/persistence/testing/jaxb/xmlelementref/root.xml";
private final static String JSON_RESOURCE = "org/eclipse/persistence/testing/jaxb/xmlelementref/root.json";
public XmlElementRefNotGivenToContextTestCases(String name)throws Exception {
super(name);
setClasses(new Class[]{Root.class});
setControlDocument(XML_RESOURCE);
setControlJSON(JSON_RESOURCE);
}
@Override
protected Object getControlObject() {
Root root = new Root();
List contents = new ArrayList();
contents.add(new Foo());
contents.add(new SubFoo());
contents.add(new Bar());
contents.add(new SubBar());
root.content = contents;
return root;
}
}