Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for assertIncludesLibraries (0.27 sec)

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

            def installation = installation("app/build/install/main/debug")
            installation.exec().out == app.expectedOutput
            installation.assertIncludesLibraries("Greeter")
        }
    
        def "can compile and link against a library specifying target machines"() {
            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)
  2. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppApplicationIntegrationTest.groovy

            sharedLibrary("hello/build/lib/main/debug/hello").assertExists()
            def installation = installation("app/build/install/main/debug")
            installation.exec().out == app.expectedOutput
            installation.assertIncludesLibraries("hello")
        }
    
        @ToBeFixedForConfigurationCache
        def "can compile and link against a library when specifying multiple target machines"() {
            createDirs("app", "hello")
    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