mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2026-04-18 05:25:49 +00:00
21 lines
226 B
Go
21 lines
226 B
Go
|
|
package signal_test
|
||
|
|
|
||
|
|
import (
|
||
|
|
"testing"
|
||
|
|
|
||
|
|
. "github.com/xtls/xray-core/common/signal"
|
||
|
|
)
|
||
|
|
|
||
|
|
func TestNotifierSignal(t *testing.T) {
|
||
|
|
n := NewNotifier()
|
||
|
|
|
||
|
|
w := n.Wait()
|
||
|
|
n.Signal()
|
||
|
|
|
||
|
|
select {
|
||
|
|
case <-w:
|
||
|
|
default:
|
||
|
|
t.Fail()
|
||
|
|
}
|
||
|
|
}
|