1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-04 04:55:23 +00:00
v2fly/common/signal/notifier_test.go

21 lines
215 B
Go
Raw Normal View History

2018-06-26 13:04:47 +00:00
package signal_test
import (
"testing"
. "v2ray.com/core/common/signal"
)
func TestNotifierSignal(t *testing.T) {
2018-07-01 10:38:40 +00:00
n := NewNotifier()
2018-06-26 13:04:47 +00:00
w := n.Wait()
n.Signal()
select {
case <-w:
default:
t.Fail()
}
}