Xray-core/core/context_test.go

21 lines
280 B
Go
Raw Normal View History

2020-11-25 11:01:53 +00:00
package core_test
import (
"context"
"testing"
2022-05-18 07:29:01 +00:00
_ "unsafe"
2020-11-25 11:01:53 +00:00
2020-12-04 01:36:16 +00:00
. "github.com/xtls/xray-core/core"
2020-11-25 11:01:53 +00:00
)
func TestFromContextPanic(t *testing.T) {
2020-11-25 11:01:53 +00:00
defer func() {
r := recover()
if r == nil {
t.Error("expect panic, but nil")
}
}()
MustFromContext(context.Background())
}