Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for assertProjectsConfigured (0.39 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/ConfigurationOnDemandIntegrationTest.groovy

            run(":api:build")
    
            then:
            fixture.assertProjectsConfigured(":", ":api")
    
            when:
            inDirectory("impl")
            run(":api:build")
    
            then:
            fixture.assertProjectsConfigured(":", ":api")
    
            when:
            run(":impl:build")
    
            then:
            fixture.assertProjectsConfigured(":", ":impl", ":api")
    
            when:
            run(":util:build")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 12:57:53 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsFixture.groovy

            def details = new StoreDetails()
            closure.delegate = details
            closure()
    
            fixture.assertStateStored(details)
    
            assertHasWarningThatIncubatingFeatureUsed()
            assertProjectsConfigured(details)
            assertModelsQueried(details)
        }
    
        /**
         * Asserts that the cache entry was written with some problems.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 17.2K bytes
    - Viewed (0)
Back to top