1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-29 15:26:29 -04:00
v2fly/common/signal/notifier_test.go

21 lines
215 B
Go
Raw Normal View History

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