| 30 | } |
| 31 | |
| 32 | static void NotificationHandler(const Checkable::Ptr& checkable, NotificationType type) |
| 33 | { |
| 34 | std::cout << "Notification triggered: " << Notification::NotificationTypeToString(type) << std::endl; |
| 35 | |
| 36 | checkable->SetExtension("requested_notifications", true); |
| 37 | checkable->SetExtension("notification_type", type); |
| 38 | } |
| 39 | |
| 40 | static void CheckNotification(const Checkable::Ptr& checkable, bool expected, NotificationType type = NotificationRecovery) |
| 41 | { |
no test coverage detected