Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for assertExceptionHasExpectedCycle (0.52 sec)

  1. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/CircularEvaluationSpec.groovy

                property.set(provider)
    
                when:
                consumer.accept(provider)
    
                then:
                CircularEvaluationException ex = thrown()
                assertExceptionHasExpectedCycle(ex, provider, property)
    
                where:
                consumer << throwingConsumers()
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 20:21:32 UTC 2023
    - 8K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/PropertySpec.groovy

                prop.set(provider)
    
                when:
                consumer.accept(provider)
    
                then:
                EvaluationContext.CircularEvaluationException ex = thrown()
                assertExceptionHasExpectedCycle(ex, provider, prop)
    
                where:
                consumer << throwingConsumers()
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 87.8K bytes
    - Viewed (0)
Back to top