Xray-core/core/context_test.go

20 lines
264 B
Go
Raw Permalink Normal View History

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