Package org.apache.sis.metadata.iso

Examples of org.apache.sis.metadata.iso.DefaultMetadata


     *
     * @throws JAXBException Should never happen.
     */
    @Test
    public void testMarshalling() throws JAXBException {
        final DefaultMetadata metadata = new DefaultMetadata();
        metadata.setLocales(Arrays.asList(LOCALES));
        assertXmlEquals(XML, marshal(metadata), "xlmns:*");
    }
View Full Code Here


     *
     * @throws JAXBException Should never happen.
     */
    @Test
    public void testUnmarshalling() throws JAXBException {
        final DefaultMetadata metadata = unmarshal(DefaultMetadata.class, XML);
        assertArrayEquals(LOCALES, metadata.getLocales().toArray());
    }
View Full Code Here

TOP

Related Classes of org.apache.sis.metadata.iso.DefaultMetadata

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.