Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 53 for AllTests (0.11 sec)

  1. platforms/documentation/docs/src/snippets/swift/testFiltering/kotlin/src/test/swift/SomeIntegTest.swift

    import XCTest
    
    class SomeIntegTest: XCTestCase {
        public static var allTests = [
            ("test1", test1),
            ("test2", test2)
        ]
        func test1() {}
        func test2() {}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 183 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/swift/testFiltering/kotlin/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)
  3. platforms/documentation/docs/src/snippets/swift/testReport/groovy/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)
  4. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/KotlinMultiplatformPluginSmokeTest.groovy

            replaceVariablesInBuildFile(kotlinVersion: kotlinVersion)
            replaceCssSupportBlocksInBuildFile(kotlinVersionNumber)
    
            when:
            def result = kgpRunner(false, kotlinVersionNumber, ':allTests', '-s')
                .expectDeprecationWarningIf(
                    kotlinVersionNumber >= VersionNumber.parse('1.9.22'),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 07:33:24 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  5. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/SwiftLibraryInitIntegrationTest.groovy

            """
            subprojectDir.file("src/test/swift/HolaTests.swift") << """
                import XCTest
                @testable import Lib
                class HolaTests: XCTestCase {
                    public static var allTests = [
                        ("testGreeting", testGreeting),
                    ]
    
                    func testGreeting() {
                        XCTAssertEqual("Hola, Mundo!", hola())
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:55 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/swift/testReport/groovy/build.gradle

        }
    }
    
    dependencies {
        testReportData project(':core')
        testReportData project(':util')
    }
    
    tasks.register('testReport', TestReport) {
        destinationDirectory = reporting.baseDirectory.dir('allTests')
        // Use test results from testReportData configuration
        testResults.from(configurations.testReportData)
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 757 bytes
    - Viewed (0)
  7. 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)
  8. platforms/documentation/docs/src/snippets/testing/testReport/kotlin/build.gradle.kts

        }
    }
    
    dependencies {
        testReportData(project(":core"))
        testReportData(project(":util"))
    }
    
    tasks.register<TestReport>("testReport") {
        destinationDirectory = reporting.baseDirectory.dir("allTests")
        // Use test results from testReportData configuration
        testResults.from(testReportData)
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 756 bytes
    - Viewed (0)
  9. platforms/software/build-init/src/main/resources/org/gradle/buildinit/tasks/templates/swiftapp/GreeterTests.swift.template

    ${fileComment.multilineComment}
    import XCTest
    @testable import ${moduleName.groovyString}
    
    class GreeterTests: XCTestCase {
        public static var allTests = [
            ("testGreeting", testGreeting),
        ]
    
        func testGreeting() {
            XCTAssertEqual("Hello, World!", Greeter().greeting())
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 19:39:09 UTC 2023
    - 302 bytes
    - Viewed (0)
  10. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/SwiftApplicationInitIntegrationTest.groovy

            """
            subprojectDir.file("src/test/swift/HolaTests.swift") << """
                import XCTest
                @testable import App
    
                class HolaTests: XCTestCase {
                    public static var allTests = [
                        ("testGreeting", testGreeting),
                    ]
    
                    func testGreeting() {
                        XCTAssertEqual("Hola, Mundo!", hola())
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:55 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top