1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-28 18:25:23 +00:00
v2fly/common/signal/notifier_test.go

21 lines
231 B
Go
Raw Normal View History

2018-06-26 13:04:47 +00:00
package signal_test
import (
"testing"
2021-02-16 20:31:50 +00:00
. "github.com/v2fly/v2ray-core/v4/common/signal"
2018-06-26 13:04:47 +00:00
)
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()
}
}