blob: a3c202e52072b06a04d74fc59e55e418a4c3fce5 [file] [log] [blame]
/*
* Copyright (c) 2011, 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:
// mmacivor - 2.3 - Initial implementation
package org.eclipse.persistence.testing.jaxb.jaxbelement.enumeration;
import java.io.InputStream;
import jakarta.xml.bind.JAXBElement;
import javax.xml.namespace.QName;
import junit.textui.TestRunner;
import org.eclipse.persistence.testing.jaxb.jaxbelement.JAXBElementTestCases;
import org.w3c.dom.Document;
public class JAXBElementEnumTestCases extends JAXBElementTestCases {
private final static String XML_RESOURCE = "org/eclipse/persistence/testing/jaxb/jaxbelement/enum/coin.xml";
private final static String JSON_RESOURCE = "org/eclipse/persistence/testing/jaxb/jaxbelement/enum/coin.json";
private final static Class<Coin> targetClass = Coin.class;
public JAXBElementEnumTestCases(String name) throws Exception {
super(name);
setControlDocument(XML_RESOURCE);
setControlJSON(JSON_RESOURCE);
setTargetClass(targetClass);
}
@Override
public Class getUnmarshalClass(){
return targetClass;
}
public static void main(String[] args) {
String[] arguments = { "-c", "org.eclipse.persistence.testing.jaxb.jaxbelement.complex.JAXBElementComplexTestCases" };
TestRunner.main(arguments);
}
@Override
public Document getWriteControlDocument() throws Exception {
InputStream inputStream = ClassLoader.getSystemResourceAsStream("org/eclipse/persistence/testing/jaxb/jaxbelement/enum/coin.xml");
Document writeControlDocument = parser.parse(inputStream);
removeEmptyTextNodes(controlDocument);
inputStream.close();
return writeControlDocument;
}
@Override
public Object getControlObject() {
Coin coin = Coin.NICKEL;
return new JAXBElement(new QName(CONTROL_NAMESPACE_URI, "coin"), targetClass, coin);
}
@Override
public Class[] getClasses() {
return new Class[]{Coin.class};
}
}