Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for parseImlFile (0.29 sec)

  1. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaIntegrationTest.groovy

        }
    
        @Test
        @ToBeFixedForConfigurationCache
        void outputDirsDefaultToToIdeaDefaults() {
            runIdeaTask("apply plugin: 'java'; apply plugin: 'idea'")
    
            def module = parseImlFile("root")
            assert module.component.@"inherit-compiler-output" == "true"
        }
    
        @Test
        @ToBeFixedForConfigurationCache
        void canHandleCircularModuleDependencies() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  2. build-logic/performance-testing/src/main/kotlin/gradlebuild/performance/PerformanceTestPlugin.kt

                }
        else listOf()
    }
    
    
    @VisibleForTesting
    fun allTestsWereSkipped(junitXmlFile: File): Boolean =
        parseXmlFile(junitXmlFile).documentElement.run {
            getAttribute("tests") == getAttribute("skipped")
        }
    
    
    private
    fun parseXmlFile(file: File): Document =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 24.4K bytes
    - Viewed (0)
Back to top