NotifyCenter_test.go 202 B

123456789101112
  1. package notify_center
  2. import (
  3. "testing"
  4. )
  5. func TestNewNotifyCenter(t *testing.T) {
  6. center := NewNotifyCenter("https://www.baidu.com/")
  7. center.Add("groupName", "Info asd 哈哈")
  8. center.Send()
  9. }