1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-09 17:30:44 +00:00
v2fly/context_test.go
2018-10-21 20:33:08 +02:00

20 lines
248 B
Go

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