Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for compileTestSwift (0.29 sec)

  1. platforms/documentation/docs/src/docs/userguide/img/xctest-task-graph.dot

      tripleDots [style="dashed,filled", fillcolor=grey, label="..."]
    
      // Ensure ordering
      compileTestSwift -> compileDebugSwift -> clean [style=invis]
      {rank=same compileDebugSwift compileTestSwift clean}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. platforms/native/testing-native/src/test/groovy/org/gradle/nativeplatform/test/xctest/plugins/XCTestConventionPluginTest.groovy

            when:
            project.pluginManager.apply(XCTestConventionPlugin)
            project.evaluate()
    
            then:
            def compileSwift = project.tasks.compileTestSwift
            compileSwift instanceof SwiftCompile
            compileSwift.source.files == [src] as Set
            compileSwift.objectFileDir.get().asFile == projectDir.file("build/obj/test")
            compileSwift.debuggable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/WellBehavedPluginTest.groovy

            // TODO: This isn't done yet, we still realize many tasks
            // Eventually, this should only realize "help"
    
            Assume.assumeFalse(pluginName in [
                'xctest', // Almost, still realizes compileTestSwift
    
                'visual-studio',
                'xcode',
    
                'play-application',
            ])
    
            applyPlugin()
    
            buildFile """
                tasks.configureEach {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 13:39:44 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/xctest/AbstractSwiftXCTestComponentIntegrationTest.groovy

        }
    
        @Override
        String getTaskNameToAssembleDevelopmentBinary() {
            return "test"
        }
    
        @Override
        String getDevelopmentBinaryCompileTask() {
            return ":compileTestSwift"
        }
    
        @Override
        XCTestSourceElement getSwift3Component() {
            return new Swift3XCTest('project')
        }
    
        @Override
        XCTestSourceElement getSwift4Component() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/test/groovy/org/gradle/language/swift/plugins/SwiftBasePluginTest.groovy

            where:
            name        | taskName                | objDir
            "main"      | "compileSwift"          | "main"
            "mainDebug" | "compileDebugSwift"     | "main/debug"
            "test"      | "compileTestSwift"      | "test"
            "testDebug" | "compileTestDebugSwift" | "test/debug"
        }
    
        def "adds link and install task for executable"() {
            def executable = Stub(DefaultSwiftExecutable)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/native/xctest_plugin.adoc

    The following diagrams show the relationship between variant-dependent tasks.
    
    .XCTest Plugin variant-dependent task graph
    image::xctest-variant-task-graph.png[]
    
    `compileTest__Variant__Swift` (e.g. `compileTestSwift`)  - link:{groovyDslPath}/org.gradle.language.swift.tasks.SwiftCompile.html[SwiftCompile]::
    Depends on: All tasks that contribute source files to the compilation
    ::
    Compiles Swift source files using the selected compiler.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  7. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeSingleSwiftProjectIntegrationTest.groovy

                .withScheme("Greeter")
                .succeeds(XcodebuildExecutor.XcodeAction.TEST)
    
            then:
            resultTestRunner.assertTasksExecuted(':compileDebugSwift', ':compileTestSwift', ':linkTest', ':installTest',
                ':syncBundleToXcodeBuiltProductDir', ':_xcode__build_GreeterTest___GradleTestRunner_Debug')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 31.3K bytes
    - Viewed (0)
Back to top