Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 44 of 44 for getComponentUnderTestDsl (0.6 sec)

  1. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/AbstractVisualStudioProjectIntegrationTest.groovy

        }
    
        abstract String getBuildFile(VariantContext variantContext)
    
        abstract void makeSingleProject()
    
        abstract String getVisualStudioProjectName()
    
        abstract String getComponentUnderTestDsl()
    
        abstract CppSourceElement getComponentUnderTest()
    
        abstract String getIdeBuildTaskName(String variant)
    
        abstract List<String> getTasksToBuildFromIde(String variant)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppLibraryIntegrationTest.groovy

    import org.hamcrest.CoreMatchers
    
    import static org.gradle.util.Matchers.containsText
    
    class CppLibraryIntegrationTest extends AbstractCppIntegrationTest implements CppTaskNames {
    
        @Override
        protected String getComponentUnderTestDsl() {
            return "library"
        }
    
        @Override
        protected List<String> getTasksToAssembleDevelopmentBinary(String variant) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 19.8K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftApplicationIntegrationTest.groovy

            installation("build/install/main/debug").exec().out == componentUnderTest.expectedOutput
        }
    
        @Override
        protected String getComponentUnderTestDsl() {
            return "application"
        }
    
        def "relinks when an upstream dependency changes in ABI compatible way"() {
            createDirs("app", "greeter")
            settingsFile << "include 'app', 'greeter'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 12:43:37 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppApplicationIntegrationTest.groovy

        @Override
        protected void makeSingleProject() {
            buildFile << """
                apply plugin: 'cpp-application'
            """
        }
    
        @Override
        protected String getComponentUnderTestDsl() {
            return "application"
        }
    
        @Override
        protected List<String> getTasksToAssembleDevelopmentBinary(String variant) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 19:11:01 UTC 2024
    - 42.5K bytes
    - Viewed (0)
Back to top