Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for assertAppHasOutputFor (0.33 sec)

  1. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftDependenciesIntegrationTest.groovy

            when:
            succeeds ":app:installDebug"
            then:
            assertTasksExecutedFor("Debug")
            assertAppHasOutputFor("debug")
    
            when:
            succeeds ":app:installRelease"
            then:
            assertTasksExecutedFor("Release")
            assertAppHasOutputFor("release")
        }
    
        @ToBeFixedForConfigurationCache
        def "can depend on swift libraries from VCS"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppDependenciesIntegrationTest.groovy

            when:
            succeeds ":app:installDebug"
            then:
            assertTasksExecutedFor("Debug")
            assertAppHasOutputFor("debug")
    
            when:
            succeeds ":app:installRelease"
            then:
            assertTasksExecutedFor("Release")
            assertAppHasOutputFor("release")
        }
    
        // NOTE: This method is named in a short way because of the maximum path length
        // on Windows.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftDependenciesCppInteroperabilityIntegrationTest.groovy

                ":app:compileReleaseSwift", ":app:linkRelease", ":app:stripSymbolsRelease", ":app:installRelease")
            assertAppHasOutputFor("release")
        }
    
        private void assertAppHasOutputFor(String buildType) {
            assert installation("app/build/install/main/${buildType}").exec().out == app.expectedOutput
        }
    
        private writeApp() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.1K bytes
    - Viewed (0)
Back to top