Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for SwiftLibTest (0.28 sec)

  1. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/SwiftLibTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.fixtures.app
    
    class SwiftLibTest extends XCTestSourceElement {
        final XCTestSourceFileElement sumTest
        final XCTestSourceFileElement greeterTest
        final XCTestSourceFileElement multiplyTest
    
        SwiftLibTest(SwiftSourceElement tested, GreeterElement greeter, SumElement sum, MultiplyElement multiply) {
            super(tested.projectName)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/SwiftLibWithCppDepXCTest.groovy

        }
    
        SwiftLibWithCppDepXCTest(String projectName, GreeterElement cppGreeter) {
            super(projectName)
            main = new SwiftLibWithCppDep(projectName, cppGreeter)
            test = new SwiftLibTest(main, main.greeter, main.sum, main.multiply)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/xctest/SwiftXCTestCppInteroperabilityIntegrationTest.groovy

    import org.gradle.language.swift.SwiftTaskNames
    import org.gradle.nativeplatform.fixtures.AvailableToolChains
    import org.gradle.nativeplatform.fixtures.app.CppGreeterFunction
    import org.gradle.nativeplatform.fixtures.app.SwiftLibTest
    import org.gradle.nativeplatform.fixtures.app.SwiftLibWithCppDep
    import org.gradle.nativeplatform.fixtures.app.SwiftLibWithCppDepXCTest
    import org.gradle.test.fixtures.file.DoesNotSupportNonAsciiPaths
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/SwiftLibWithXCTest.groovy

        SwiftLibWithXCTest() {
            this("greeter")
        }
    
        SwiftLibWithXCTest(String projectName) {
            super(projectName)
            main = new SwiftLib(projectName)
            test = new SwiftLibTest(main, main.greeter, main.sum, main.multiply)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/SwiftSingleFileLibWithSingleXCTestSuite.groovy

            @Override
            List<XCTestSourceFileElement> getTestSuites() {
                return [
                    new XCTestSourceFileElement("CombinedTests") {
                        final delegate = new SwiftLibTest(main, main.greeter, main.sum, main.multiply)
    
                        @Override
                        List<XCTestCaseElement> getTestCases() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top