Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for flavorOne (0.21 sec)

  1. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/internal/DefaultNativeExecutableBinarySpecTest.groovy

                Mock(NativeDependencyResolver), Stub(NativePlatform), Stub(BuildType), new DefaultFlavor("flavorOne"))
    
            then:
            binary.toString() == "executable 'bigOne:executable'"
        }
    
        def "returns null for link and install when none defined"() {
            expect:
            tasks.link == null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/internal/DefaultStaticLibraryBinarySpecTest.groovy

        }
    
        def getStaticLibrary() {
            TestNativeBinariesFactory.create(StaticLibraryBinarySpec, DefaultStaticLibraryBinarySpec, "test", library, namingScheme, resolver, platform,
                buildType, new DefaultFlavor("flavorOne"))
        }
    
        def "can set output file"() {
            given:
            final binary = staticLibrary
            def outputFile = Mock(File)
    
            when:
            binary.staticLibraryFile = outputFile
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/internal/DefaultSharedLibraryBinarySpecTest.groovy

            TestNativeBinariesFactory.create(SharedLibraryBinarySpec, DefaultSharedLibraryBinarySpec, "test", library, namingScheme, resolver,
                                             platform, buildType, new DefaultFlavor("flavorOne"))
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  4. platforms/ide/ide-native/src/test/groovy/org/gradle/ide/visualstudio/internal/NativeSpecVisualStudioTargetBinaryTest.groovy

            when:
            exe.getName() >> "exeName"
            exeBinary.getProjectPath() >> ":"
            binaryNamingScheme.getVariantDimensions() >> ["platformOne", "buildTypeOne", "flavorOne"]
    
            then:
            checkNames targetBinary, "exeNameExe", 'platformOneBuildTypeOneFlavorOne'
        }
    
        private static checkNames(VisualStudioTargetBinary binary, def projectName, def configurationName) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 13.3K bytes
    - Viewed (0)
Back to top