Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for NotifyProjectBeforeEvaluatedBuildOperationType (0.71 sec)

  1. subprojects/core/src/test/groovy/org/gradle/configuration/project/LifecycleProjectEvaluatorTest.groovy

            def details = op.descriptor.details as NotifyProjectBeforeEvaluatedBuildOperationType.Details
            details.projectPath == ":project1"
            details.buildPath == ":"
    
            assertOpFailureOrNot(op, NotifyProjectBeforeEvaluatedBuildOperationType.Result, failureCause)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/configuration/project/LifecycleProjectEvaluatorIntegrationTest.groovy

            when:
            succeeds('foo')
    
            then:
    
            def configOp = operations.only(ConfigureProjectBuildOperationType, { it.details.projectPath == ':foo' })
            with(operations.only(NotifyProjectBeforeEvaluatedBuildOperationType, { it.details.projectPath == ':foo' })) {
                displayName == 'Notify beforeEvaluate listeners of :foo'
                children*.displayName == ["Execute Project.beforeEvaluate listener"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 6.5K bytes
    - Viewed (0)
Back to top