blob: c6722ae0a051cb8b402826bc1687f585e59382e2 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 1998, 2013 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:
* Oracle - initial API and implementation from Oracle TopLink
******************************************************************************/
package org.eclipse.persistence.testing.oxm.xmlmarshaller;
import org.eclipse.persistence.exceptions.XMLMarshalException;
import org.eclipse.persistence.oxm.XMLContext;
import org.eclipse.persistence.oxm.XMLUnmarshaller;
import org.eclipse.persistence.oxm.XMLUnmarshallerHandler;
import org.eclipse.persistence.testing.oxm.OXTestCase;
public class XMLUnmarshallerHandlerTestCases extends OXTestCase {
private XMLUnmarshallerHandler xmlUnmarshallerHandler;
public XMLUnmarshallerHandlerTestCases(String name) {
super(name);
}
public void setUp() {
XMLMarshallerCarProject project = new XMLMarshallerCarProject();
XMLContext xmlContext = new XMLContext(project);
XMLUnmarshaller xmlUnmarshaller = xmlContext.createUnmarshaller();
xmlUnmarshallerHandler = xmlUnmarshaller.getUnmarshallerHandler();
}
public void testInvalidState() {
try {
xmlUnmarshallerHandler.getResult();
} catch (XMLMarshalException e) {
if (e.getErrorCode() != XMLMarshalException.ILLEGAL_STATE_XML_UNMARSHALLER_HANDLER) {
fail("The wrong XMLMarshalException was thrown.");
} else {
return;
}
}
fail("An XMLMarshalException with error code " + XMLMarshalException.ILLEGAL_STATE_XML_UNMARSHALLER_HANDLER + " should have been thrown");
}
}