Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for SwiftLibTest (0.23 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/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeSwiftExternalSourceDependenciesIntegrationTest.groovy

    import org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache
    import org.gradle.nativeplatform.fixtures.app.SwiftAppWithLibrary
    import org.gradle.nativeplatform.fixtures.app.SwiftLib
    import org.gradle.nativeplatform.fixtures.app.SwiftLibTest
    import org.gradle.test.fixtures.file.DoesNotSupportNonAsciiPaths
    import org.gradle.vcs.fixtures.GitFileRepository
    import org.gradle.vcs.internal.SourceDependencies
    import org.junit.Rule
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/xctest/SwiftXCTestIntegrationTest.groovy

    import org.gradle.nativeplatform.fixtures.app.SwiftFailingXCTestBundle
    import org.gradle.nativeplatform.fixtures.app.SwiftLib
    import org.gradle.nativeplatform.fixtures.app.SwiftLibTest
    import org.gradle.nativeplatform.fixtures.app.SwiftLibWithXCTest
    import org.gradle.nativeplatform.fixtures.app.SwiftSingleFileApp
    import org.gradle.nativeplatform.fixtures.app.SwiftSingleFileLibWithSingleXCTestSuite
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 20.8K bytes
    - Viewed (0)
Back to top