Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 199 for xcTest (0.15 sec)

  1. platforms/documentation/docs/src/snippets/swift/testFiltering/groovy/src/test/swift/SomeOtherTest.swift

    import XCTest
    
    class SomeOtherTest: XCTestCase {
        public static var allTests = [
            ("testQuickUiCheck", testQuickUiCheck),
            ("testQuickServerCheck", testQuickServerCheck)
        ]
        func testQuickUiCheck() {}
        func testQuickServerCheck() {}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 261 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/swift/testReport/groovy/core/build.gradle

    plugins {
        id 'myproject.xctest-conventions'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 50 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/swift/testFiltering/groovy/src/test/swift/LinuxMain.swift

    import XCTest
    
    XCTMain([
        testCase(SomeIntegTest.allTests), testCase(SomeOtherTest.allTests)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 99 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/swift/testFiltering/kotlin/src/test/swift/LinuxMain.swift

    import XCTest
    
    XCTMain([
        testCase(SomeIntegTest.allTests), testCase(SomeOtherTest.allTests)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 99 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/swift/testReport/kotlin/core/build.gradle.kts

    plugins {
        id("myproject.xctest-conventions")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 51 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/swift/testReport/kotlin/core/src/test/swift/CoreTest.swift

    import XCTest
    
    class CoreTest: XCTestCase {
        public static var allTests = [
            ("testOk", testOk)
        ]
    
        func testOk() {
            print("hello from CoreTest.")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 179 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/swift/testReport/groovy/util/build.gradle

    plugins {
        id 'myproject.xctest-conventions'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 50 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/swift/testReport/kotlin/util/src/test/swift/UtilTest.swift

    import XCTest
    
    class UtilTest: XCTestCase {
        public static var allTests = [
            ("testOk", testOk)
        ]
        func testOk() {
            print("hello from UtilTest.")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 178 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/swift/testReport/groovy/util/src/test/swift/LinuxMain.swift

    import XCTest
    
    XCTMain([
        testCase(UtilTest.allTests)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 60 bytes
    - Viewed (0)
  10. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/SwiftApplicationProjectInitDescriptor.java

                    "Apply the swift-application plugin to add support for building Swift executables",
                    "swift-application")
                .plugin("Apply the xctest plugin to add support for building and running Swift test executables (Linux) or bundles (macOS)",
                    "xctest")
                .block("Set the target operating system and architecture for this application", "application", this::configureTargetMachineDefinition);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top