Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for getTestedComponentDsl (0.57 sec)

  1. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/xctest/SwiftXCTestComponentWithBothLibraryLinkageIntegrationTest.groovy

        List<String> getTasksToAssembleDevelopmentBinaryOfComponentUnderTest() {
            return [":compileDebugSharedSwift"] + super.getTasksToAssembleDevelopmentBinaryOfComponentUnderTest()
        }
    
        @Override
        String getTestedComponentDsl() {
            return "library"
        }
    
        @Override
        protected MainWithXCTestSourceElement getComponentUnderTest() {
            return new SwiftLibWithXCTest()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/cpp/CppUnitTestComponentWithStaticLibraryLinkageIntegrationTest.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.6K bytes
    - Viewed (0)
  3. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/cpp/AbstractCppUnitTestComponentWithTestedComponentIntegrationTest.groovy

                ${testedComponentDsl} {
                    targetMachines = [${targetMachines.join(",")}]
                }
            """ + super.configureTargetMachines(targetMachines)
        }
    
        abstract String getTestedComponentDsl()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeSwiftSharedLibraryLinkageWithXCTestProjectIntegrationTest.groovy

        @Override
        void makeSingleProject() {
            buildFile << """
                apply plugin: 'swift-library'
                apply plugin: 'xctest'
            """
        }
    
        @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.4K bytes
    - Viewed (0)
  5. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeSwiftStaticLibraryLinkageWithXCTestProjectIntegrationTest.groovy

            buildFile << """
                apply plugin: 'swift-library'
                apply plugin: 'xctest'
                library.linkage = [Linkage.STATIC]
            """
        }
    
        @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)
  6. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/xctest/SwiftXCTestComponentWithApplicationIntegrationTest.groovy

            return [":compileDebugSwift", ":relocateMainForTest"] + super.getTasksToAssembleDevelopmentBinaryOfComponentUnderTest()
        }
    
        @Override
        String getTestedComponentDsl() {
            return "application"
        }
    
        @Override
        protected MainWithXCTestSourceElement getComponentUnderTest() {
            return new SwiftAppWithXCTest()
        }
    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/cpp/CppUnitTestComponentWithSharedLibraryLinkageIntegrationTest.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.6K bytes
    - Viewed (0)
  8. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/xctest/SwiftXCTestComponentWithSharedLibraryLinkageIntegrationTest.groovy

        List<String> getTasksToAssembleDevelopmentBinaryOfComponentUnderTest() {
            return [":compileDebugSwift"] + super.getTasksToAssembleDevelopmentBinaryOfComponentUnderTest()
        }
    
        @Override
        String getTestedComponentDsl() {
            return "library"
        }
    
        @Override
        protected MainWithXCTestSourceElement getComponentUnderTest() {
            return new SwiftLibWithXCTest()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/xctest/SwiftXCTestComponentWithStaticLibraryLinkageIntegrationTest.groovy

        List<String> getTasksToAssembleDevelopmentBinaryOfComponentUnderTest() {
            return [":compileDebugSwift"] + super.getTasksToAssembleDevelopmentBinaryOfComponentUnderTest()
        }
    
        @Override
        String getTestedComponentDsl() {
            return "library"
        }
    
        @Override
        protected MainWithXCTestSourceElement getComponentUnderTest() {
            return new SwiftLibWithXCTest()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  10. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeSwiftApplicationWithXCTestProjectIntegrationTest.groovy

        @Override
        void makeSingleProject() {
            buildFile << """
                apply plugin: 'swift-application'
                apply plugin: 'xctest'
            """
        }
    
        @Override
        String getTestedComponentDsl() {
            return "application"
        }
    
        @Override
        protected SwiftSourceElement getComponentUnderTest() {
            return new SwiftAppWithXCTest()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top