/******************************************************************************* * Copyright (c) 2012, 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: * Blaise Doughan - 2.3.3 - initial implementation ******************************************************************************/ package org.eclipse.persistence.testing.jaxb.annotations.xmlpath.attributecollection; import java.io.InputStream; import java.util.ArrayList; import java.util.List; import org.eclipse.persistence.testing.jaxb.JAXBTestCases; public class XmlPathCollectionRefAttributeTestCases extends JAXBTestCases { private static final String XML_RESOURCE = "org/eclipse/persistence/testing/jaxb/annotations/xmlpath/CollectionRefAttribute.xml"; private static final String SCHEMA_RESOURCE = "org/eclipse/persistence/testing/jaxb/annotations/xmlpath/CollectionRefAttribute.xsd"; public XmlPathCollectionRefAttributeTestCases(String name) throws Exception { super(name); setClasses(new Class[] {XmlPathCollectionRefAttributeRoot.class}); setControlDocument(XML_RESOURCE); } @Override protected Object getControlObject() { List<XmlPathCollectionRefAttributeChild> list = new ArrayList<XmlPathCollectionRefAttributeChild>(2); XmlPathCollectionRefAttributeChild child1 = new XmlPathCollectionRefAttributeChild(); child1.setId("A"); list.add(child1); XmlPathCollectionRefAttributeChild child2 = new XmlPathCollectionRefAttributeChild(); child2.setId("B"); list.add(child2); XmlPathCollectionRefAttributeRoot root = new XmlPathCollectionRefAttributeRoot(); root.setAttribute(list); root.setElement(list); root.setXpathAttribute(list); root.setXpathAttributeList(list); return root; } public void testSchemaGen() throws Exception{ List<InputStream> controlSchemas = new ArrayList<InputStream>(1); InputStream is = getClass().getClassLoader().getResourceAsStream(SCHEMA_RESOURCE); controlSchemas.add(is); super.testSchemaGen(controlSchemas); } }