Package com.github.timurstrekalov.saga.core.testfetcher

Examples of com.github.timurstrekalov.saga.core.testfetcher.TestFetcher


    public Config getConfig() {
        return config;
    }

    private List<URI> fetchTests(final URI baseDir) throws IOException {
        final TestFetcher fetcher = TestFetcherFactory.newInstance(baseDir);
        final List<URI> tests = fetcher.fetch(baseDir, config.getIncludes(), config.getExcludes());

        logger.info("{} tests found", tests.size());

        return tests;
    }
View Full Code Here

TOP

Related Classes of com.github.timurstrekalov.saga.core.testfetcher.TestFetcher

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.