Package org.gradle.nativeplatform.test

Examples of org.gradle.nativeplatform.test.TestSuiteContainer


        if (componentSpecs != null) {
            components.addAll(componentSpecs);
        }

        try {
            TestSuiteContainer testSuites = getModelRegistry().get(ModelPath.path("testSuites"), ModelType.of(TestSuiteContainer.class));
            components.addAll(testSuites);
        } catch (IllegalStateException e) {
            // TODO - need a better contract here
            // Ignore for now
        }
View Full Code Here

TOP

Related Classes of org.gradle.nativeplatform.test.TestSuiteContainer

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.