diff --git a/backend/internal/services/notification_service_test.go b/backend/internal/services/notification_service_test.go index 8b91f4a..af35efa 100644 --- a/backend/internal/services/notification_service_test.go +++ b/backend/internal/services/notification_service_test.go @@ -117,3 +117,11 @@ func TestNotificationService_MarkAllAsRead(t *testing.T) { } }) } + +// NewNotificationService instantiation test +func TestNewNotificationService(t *testing.T) { + service := NewNotificationService(nil, nil) + if service == nil { + t.Error("Expected NotificationService to not be nil") + } +}