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

21 lines
231 B
Go
Raw Normal View History

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