Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for assertAllDirsDoNotExist (0.28 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/cache/internal/GradleUserHomeCleanupServiceIntegrationTest.groovy

            when:
            succeeds("help")
    
            then:
            oldButRecentlyUsedGradleDist.assertAllDirsExist()
            oldNotRecentlyUsedGradleDist.assertAllDirsDoNotExist()
    
            currentCacheDir.assertExists()
            currentDist.assertExists()
    
            getGcFile(currentCacheDir).assertExists()
    
            where:
            type              | daysToTriggerCleanup
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 10 15:48:56 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  2. subprojects/core/src/testFixtures/groovy/org/gradle/cache/internal/GradleUserHomeCleanupFixture.groovy

            }
    
            void assertAllDirsExist() {
                cacheDir.assertExists()
                distDir.assertExists()
                customDistDir.assertExists()
            }
    
            void assertAllDirsDoNotExist() {
                cacheDir.assertDoesNotExist()
                distDir.assertDoesNotExist()
                customDistDir.assertDoesNotExist()
            }
        }
    
        static enum DistType {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 20:02:29 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/internal/cache/CacheConfigurationsContinuousIntegrationTest.groovy

            when:
            sendEOT()
    
            then:
            waitForNotRunning()
    
            and:
            oldButRecentlyUsedGradleDist.assertAllDirsExist()
            oldNotRecentlyUsedGradleDist.assertAllDirsDoNotExist()
    
            currentCacheDir.assertExists()
            currentDist.assertExists()
    
            getGcFile(currentCacheDir).assertExists()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 9.8K bytes
    - Viewed (0)
Back to top