1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-12 02:40:42 +00:00
v2fly/context_test.go
2021-02-17 04:31:50 +08:00

20 lines
264 B
Go

package core_test
import (
"context"
"testing"
. "github.com/v2fly/v2ray-core/v4"
)
func TestContextPanic(t *testing.T) {
defer func() {
r := recover()
if r == nil {
t.Error("expect panic, but nil")
}
}()
MustFromContext(context.Background())
}