Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for assertDoesNotExist (0.15 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheLifecyclePluginIntegrationTest.groovy

            then:
            configurationCache.assertStateStored()
    
            and:
            buildDir.assertDoesNotExist()
    
            when:
            buildDir.mkdir()
            configurationCacheRun 'clean'
    
            then:
            configurationCache.assertStateLoaded()
    
            and:
            buildDir.assertDoesNotExist()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

            and:
            // start as new process so journal is not restored from in-memory cache
            executer.withTasks("help").start().waitForFinish()
    
            then:
            outputDir1.assertDoesNotExist()
            outputDir2.assertExists()
            gcFile.lastModified() >= SECONDS.toMillis(beforeCleanup)
        }
    
        def "cleans up cache when retention is configured less than the default"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
Back to top