v2ray-core/common/signal/notifier_test.go

24 lines
265 B
Go
Raw Normal View History

2018-06-26 13:04:47 +00:00
package signal_test
import (
"testing"
. "v2ray.com/core/common/signal"
//. "v2ray.com/ext/assert"
)
func TestNotifierSignal(t *testing.T) {
//assert := With(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()
}
}