blob: be50526cefc0d4a5a2817b9dfe6a394a22285e98 [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:
// -Matt MacIvor - Initial Implementation - 2.4.1
package org.eclipse.persistence.testing.jaxb.inheritance.interfaces;
import java.io.StringReader;
import java.io.StringWriter;
import jakarta.xml.bind.JAXBContext;
import jakarta.xml.bind.Marshaller;
import org.eclipse.persistence.jaxb.JAXBContextFactory;
import org.eclipse.persistence.testing.oxm.OXTestCase;
public class InterfacesTestCases extends OXTestCase {
private static final String XML = "<customer><firstName>Jane</firstName><lastName>Doe</lastName></customer>";
private JAXBContext jaxbContext;
public InterfacesTestCases(String name) {
super(name);
}
@Override
protected void setUp() throws Exception {
jaxbContext = JAXBContextFactory.createContext(new Class<?>[]{CustomerInt.class}, null);
}
public void testMarshal() throws Exception {
Customer customer = new Customer();
customer.setFirstName("Jane");
customer.setLastName("Doe");
StringWriter writer = new StringWriter();
Marshaller marshaller = jaxbContext.createMarshaller();
marshaller.setProperty(Marshaller.JAXB_FRAGMENT, true);
marshaller.marshal(customer, writer);
assertEquals(XML, writer.toString());
}
}