NotifyCenter_test.go 296 B

1234567891011121314
  1. package notify_center
  2. import (
  3. "github.com/allanpk716/ChineseSubFinder/internal/pkg"
  4. "testing"
  5. )
  6. func TestNewNotifyCenter(t *testing.T) {
  7. config := pkg.GetConfig()
  8. center := NewNotifyCenter(config.WhenSubSupplierInvalidWebHook)
  9. center.Add("groupName", "Info asd 哈哈")
  10. center.Send()
  11. }