mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-04 20:19:19 +02:00
21 lines
229 B
Go
21 lines
229 B
Go
|
package signal_test
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
. "github.com/xtls/xray-core/v1/common/signal"
|
||
|
)
|
||
|
|
||
|
func TestNotifierSignal(t *testing.T) {
|
||
|
n := NewNotifier()
|
||
|
|
||
|
w := n.Wait()
|
||
|
n.Signal()
|
||
|
|
||
|
select {
|
||
|
case <-w:
|
||
|
default:
|
||
|
t.Fail()
|
||
|
}
|
||
|
}
|