1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-02 03:55:24 +00:00
v2fly/common/signal/notifier_test.go
2019-01-08 23:27:02 +01:00

21 lines
215 B
Go

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