Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for AllTests (0.08 sec)

  1. 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)
  2. 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