blob: f82a3fcbacc36fa5b7eb326e7ef4fe58f6fa354c [file] [log] [blame]
/*
* Copyright (c) 2014, 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:
// Oracle - initial API and implementation
package org.eclipse.persistence.testing.jaxb.annotations.xmlvalue;
import org.eclipse.persistence.jaxb.MOXySystemProperties;
import org.eclipse.persistence.testing.jaxb.JAXBWithJSONTestCases;
/**
* Tests useXmlValueExtension method when system property org.eclipse.persistence.moxy.annotation.xml-value-extension is set.
*/
public class XmlValueSystemPropertyNonDefaultTestCase extends JAXBWithJSONTestCases {
private static final String XML_RESOURCE = "org/eclipse/persistence/testing/jaxb/annotations/xmlvalue/objectValue.xml";
private static final String JSON_RESOURCE = "org/eclipse/persistence/testing/jaxb/annotations/xmlvalue/objectValue.json";
static {
System.setProperty(MOXySystemProperties.XML_VALUE_EXTENSION, "true");
}
public XmlValueSystemPropertyNonDefaultTestCase(String name) throws Exception {
super(name);
setClasses(new Class<?>[]{Parent.class, Child.class});
setControlDocument(XML_RESOURCE);
setControlJSON(JSON_RESOURCE);
}
@Override
protected Object getControlObject() {
Child child = new Child();
child.setChildProperty("text");
child.setParentAttributeProperty("attribute");
return child;
}
}