blob: cfa9e5d593b3870b174d2ad7234642929278574e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010-2012 Oracle. 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:
* dclarke - EclipseLink 2.4 - MySports Demo Bug 344608
******************************************************************************/
package eclipselink.example.mysports.admin.test.services.glassfish;
import javax.xml.bind.Marshaller;
import javax.xml.bind.Unmarshaller;
import org.junit.Test;
import eclipselink.example.mysports.admin.services.glassfish.Message;
public class ParseJDBCConnectPool_mysports_Tests extends BaseJsonRestTest{
@Test
public void parse() throws Exception {
Unmarshaller unmarshaller = createJsonUnmarshaller();
Marshaller marshaller = createJsonMarshaller();
marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
Message message = unmarshaller.unmarshal(openSource("jdbc-connection-pool_mysports.json"), Message.class).getValue();
marshaller.marshal(message, System.out);
}
}