Package org.yaml.snakeyaml.constructor

Examples of org.yaml.snakeyaml.constructor.BaseConstructor$RecursiveTuple


import org.yaml.snakeyaml.error.YAMLException;

public class CompactConstructorErrorsTest extends TestCase {

    public void test1() {
        BaseConstructor compact = new CompactConstructor();
        Yaml yaml = new Yaml(compact);
        String doc = Util.getLocalResource("compactnotation/error1.yaml");
        try {
            yaml.load(doc);
            fail("Package is not specified.");
View Full Code Here

TOP

Related Classes of org.yaml.snakeyaml.constructor.BaseConstructor$RecursiveTuple

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.