Package org.yaml.snakeyaml.issues.issue72

Source Code of org.yaml.snakeyaml.issues.issue72.CollectionTest$CollectionList

/**
* Copyright (c) 2008-2012, http://www.snakeyaml.org
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*     http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.yaml.snakeyaml.issues.issue72;

import java.util.ArrayList;
import java.util.Collection;
import java.util.HashSet;

import junit.framework.TestCase;

import org.yaml.snakeyaml.Yaml;

public class CollectionTest extends TestCase {

    public void testCollectionList() {
        CollectionList bean = new CollectionList();
        Yaml yaml = new Yaml();
        String doc = yaml.dumpAsMap(bean);
        // System.out.println(doc);
        Yaml beanLoader = new Yaml();
        CollectionList parsed = beanLoader.loadAs(doc, CollectionList.class);
        assertTrue(parsed.getNames().contains("aaa"));
        assertTrue(parsed.getNames().contains("bbb"));
        assertEquals(2, parsed.getNames().size());
    }

    public static class CollectionList {
        private Collection<String> names;

        public CollectionList() {
            names = new ArrayList<String>();
            names.add("aaa");
            names.add("bbb");
        }

        public Collection<String> getNames() {
            return names;
        }

        public void setNames(Collection<String> names) {
            this.names = names;
        }
    }

    public void testCollectionSet() {
        CollectionSet bean = new CollectionSet();
        Yaml yaml = new Yaml();
        String doc = yaml.dumpAsMap(bean);
        // System.out.println(doc);
        Yaml beanLoader = new Yaml();
        CollectionSet parsed = beanLoader.loadAs(doc, CollectionSet.class);
        assertTrue(parsed.getRoles().contains(11));
        assertTrue(parsed.getRoles().contains(13));
        assertEquals(2, parsed.getRoles().size());
    }

    public static class CollectionSet {
        private Collection<Integer> roles;

        public CollectionSet() {
            roles = new HashSet<Integer>();
            roles.add(11);
            roles.add(13);
        }

        public Collection<Integer> getRoles() {
            return roles;
        }

        public void setRoles(Collection<Integer> roles) {
            this.roles = roles;
        }
    }
}
TOP

Related Classes of org.yaml.snakeyaml.issues.issue72.CollectionTest$CollectionList

TOP
Copyright © 2018 www.massapi.com. 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.