1
0
mirror of https://github.com/nikoksr/notify.git synced 2024-11-21 16:46:32 +02:00
notify/use_test.go
2024-10-24 15:07:36 +02:00

37 lines
648 B
Go

package notify
import (
"testing"
"github.com/nikoksr/notify/service/mail"
)
func TestUseServices(t *testing.T) {
t.Parallel()
n := New()
if len(n.notifiers) != 0 {
t.Fatalf("Expected len(n.notifiers) == 0, got %d", len(n.notifiers))
}
n.UseServices(mail.New("", ""))
if len(n.notifiers) != 1 {
t.Errorf("Expected len(n.notifiers) == 1, got %d", len(n.notifiers))
}
n.UseServices(
mail.New("", ""),
mail.New("", ""),
)
if len(n.notifiers) != 3 {
t.Errorf("Expected len(n.notifiers) == 3, got %d", len(n.notifiers))
}
n.UseServices(nil)
if r := recover(); r != nil {
t.Errorf("Expected no panic, got %v", r)
}
}