From 1e30f57705c136feeb8a0b488b1df3c18ce72953 Mon Sep 17 00:00:00 2001 From: Tiago Yamamoto Date: Sun, 28 Dec 2025 01:34:07 -0300 Subject: [PATCH] test: add new NotificationService instantiation test --- backend/internal/services/notification_service_test.go | 8 ++++++++ 1 file changed, 8 insertions(+) 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") + } +}