mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-02 17:27:50 -04:00
21 lines
231 B
Go
21 lines
231 B
Go
package signal_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
. "github.com/v2fly/v2ray-core/v5/common/signal"
|
|
)
|
|
|
|
func TestNotifierSignal(t *testing.T) {
|
|
n := NewNotifier()
|
|
|
|
w := n.Wait()
|
|
n.Signal()
|
|
|
|
select {
|
|
case <-w:
|
|
default:
|
|
t.Fail()
|
|
}
|
|
}
|