Package org.cassandraunit.dataset.yaml

Examples of org.cassandraunit.dataset.yaml.FileYamlDataSet


                break;
            case json:
                dataSet = new FileJsonDataSet(dataSetLocation);
                break;
            case yaml:
                dataSet = new FileYamlDataSet(dataSetLocation);
                break;
            default:
                throw new ParseException("dataSet file extension must be one of .xml, .json, .yaml");
        }
    }
View Full Code Here

TOP

Related Classes of org.cassandraunit.dataset.yaml.FileYamlDataSet

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.