Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getComponentUnderTestDsl (0.28 sec)

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

        @Override
        void makeSingleProject() {
            buildFile << """
                apply plugin: 'swift-application'
            """
        }
    
        @Override
        String getComponentUnderTestDsl() {
            return 'application'
        }
    
        @Override
        protected SwiftSourceElement getComponentUnderTest() {
            return new SwiftApp()
        }
    
        @Requires(UnitTestPreconditions.HasXCode)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeCppApplicationProjectIntegrationTest.groovy

        @Override
        protected void makeSingleProject() {
            buildFile << """
                apply plugin: 'cpp-application'
            """
        }
    
        @Override
        protected String getComponentUnderTestDsl() {
            return 'application'
        }
    
        @Override
        protected CppSourceElement getComponentUnderTest() {
            return new CppApp()
        }
    
        @Requires(UnitTestPreconditions.HasXCode)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftApplicationIntegrationTest.groovy

            installation("build/install/main/debug").exec().out == componentUnderTest.expectedOutput
        }
    
        @Override
        protected String getComponentUnderTestDsl() {
            return "application"
        }
    
        def "relinks when an upstream dependency changes in ABI compatible way"() {
            createDirs("app", "greeter")
            settingsFile << "include 'app', 'greeter'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 12:43:37 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppApplicationIntegrationTest.groovy

        @Override
        protected void makeSingleProject() {
            buildFile << """
                apply plugin: 'cpp-application'
            """
        }
    
        @Override
        protected String getComponentUnderTestDsl() {
            return "application"
        }
    
        @Override
        protected List<String> getTasksToAssembleDevelopmentBinary(String variant) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 19:11:01 UTC 2024
    - 42.5K bytes
    - Viewed (0)
Back to top