1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-25 17:05:23 +00:00
v2fly/common/signal/notifier_test.go
2021-02-17 04:31:50 +08:00

21 lines
231 B
Go

package signal_test
import (
"testing"
. "github.com/v2fly/v2ray-core/v4/common/signal"
)
func TestNotifierSignal(t *testing.T) {
n := NewNotifier()
w := n.Wait()
n.Signal()
select {
case <-w:
default:
t.Fail()
}
}