Package com.github.jsonldjava.utils

Examples of com.github.jsonldjava.utils.EarlTestSuite


    private static final String CACHE_DIR = null;

    @Parameters(name = "{0}{1}")
    public static Collection<Object[]> data() throws URISyntaxException, IOException {

        final EarlTestSuite testSuite = new EarlTestSuite(TURTLE_TEST_MANIFEST, CACHE_DIR,
                LAST_ETAG);

        final Collection<Object[]> rdata = new ArrayList<Object[]>();

        for (final Map<String, Object> test : testSuite.getTests()) {
            rdata.add(new Object[] { testSuite, test.get("@id"), test });
        }

        return rdata;
    }
View Full Code Here

TOP

Related Classes of com.github.jsonldjava.utils.EarlTestSuite

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.