export_test.go

 1package notification
 2
 3import "github.com/gen2brain/beeep"
 4
 5// SetNotifyFunc allows replacing the notification function for testing.
 6func SetNotifyFunc(fn func(string, string, any) error) {
 7	notifyFunc = fn
 8}
 9
10// ResetNotifyFunc resets the notification function to the default.
11func ResetNotifyFunc() {
12	notifyFunc = beeep.Notify
13}