Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIntegrationTest.groovy

            output.count("Transforming test-1.3.jar") == 1
            output.count("Transforming test2-2.3.jar") == 1
            file("build/libs").assertDoesNotExist()
    
            when:
            run "resolve"
    
            then:
            file("build/libs").assertDoesNotExist()
    
            and:
            output.count("Transforming") == 0
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:42 UTC 2023
    - 100.8K bytes
    - Viewed (0)
Back to top