Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getNotificationOperationDetails (0.28 sec)

  1. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/BuildOperationNotificationsFixtureTest.groovy

        BuildOperationStartedNotification startedNotification(Class<?> detailsClazz) {
            BuildOperationStartedNotification buildOperationStartedNotification = Mock()
            1 * buildOperationStartedNotification.getNotificationOperationDetails() >> new Object().withTraits(detailsClazz)
            buildOperationStartedNotification
        }
    
        static trait EmptyDetails {}
    
        static trait SimpleDetails {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/BuildOperationNotificationsFixture.groovy

                    @Override
                    void started($BuildOperationStartedNotification.name notification) {
                        verify(notification.getNotificationOperationDetails(), 'Details')
                    }
    
                    @Override
                    void progress($BuildOperationProgressNotification.name notification) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top