Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for assertIncludesLibraries (0.47 sec)

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

            executable("build/exe/main/main").assertExists()
    
            def install = installation("build/install/main")
            install.assertInstalled()
            install.assertIncludesLibraries("hello")
            install.exec().out == helloWorldApp.englishOutput
        }
    
        @Requires(UnitTestPreconditions.CanInstallExecutable)
        @ToBeFixedForConfigurationCache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/NativeInstallationFixture.groovy

            this
        }
    
        NativeInstallationFixture assertNotInstalled() {
            installDir.assertDoesNotExist()
            this
        }
    
        NativeInstallationFixture assertIncludesLibraries(String... names) {
            def expected = names.collect { os.getSharedLibraryName(it) } as Set
            assert libraryFiles.collect { it.name } as Set == expected as Set
            this
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppLibraryWithStaticLinkagePublishingIntegrationTest.groovy

            debugInstall.assertIncludesLibraries()
    
            when:
            executer.inDirectory(consumer)
            run("installRelease")
    
            then:
            def releaseInstall = installation(consumer.file("build/install/main/release"))
            releaseInstall.exec().out == app.withFeatureEnabled().expectedOutput
            releaseInstall.assertIncludesLibraries()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/LibraryBinariesIntegrationTest.groovy

            sharedLibrary("build/libs/helloShared/shared/helloShared").assertExistsAndDelete()
            installation("build/install/main")
                .assertIncludesLibraries("helloShared")
                .exec().out == "Hello staticHello shared"
        }
    
        @ToBeFixedForConfigurationCache
        def "executable can use a combination of libraries from the same and other projects"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.3K bytes
    - Viewed (0)
Back to top