Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for getTestedComponentDsl (0.18 sec)

  1. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeSwiftBothLibraryLinkageWithXCTestProjectIntegrationTest.groovy

                apply plugin: 'swift-library'
                apply plugin: 'xctest'
                library.linkage = [Linkage.STATIC, Linkage.SHARED]
            """
        }
    
        @Override
        String getTestedComponentDsl() {
            return "library"
        }
    
        @Override
        protected SwiftSourceElement getComponentUnderTest() {
            return new SwiftLibWithXCTest()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/cpp/CppUnitTestComponentWithBothLibraryLinkageIntegrationTest.groovy

        }
    
        @Override
        String getTestedComponentDsl() {
            return "library"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/AbstractXcodeSwiftWithXCTestProjectIntegrationTest.groovy

            return new Swift5WithXCTest(rootProjectName)
        }
    
        @Override
        String getComponentUnderTestDsl() {
            return "xctest"
        }
    
        abstract String getTestedComponentDsl()
    
        @Override
        protected String configureTargetMachines(String... targetMachines) {
            return """
                ${testedComponentDsl}.targetMachines = [${targetMachines.join(",")}]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  4. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/xctest/AbstractSwiftXCTestComponentWithTestedComponentIntegrationTest.groovy

        }
    
        abstract String getTestedComponentDsl()
    
        @Override
        protected String getComponentUnderTestDsl() {
            return "xctest"
        }
    
        @Override
        protected configureTargetMachines(String... targetMachines) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.1K bytes
    - Viewed (0)
Back to top