Xray-core/core/context_test.go

21 lines
280 B
Go
Raw Normal View History

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