1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-11-10 06:16:53 -05:00
v2fly/context_test.go

31 lines
456 B
Go
Raw Normal View History

2018-10-21 14:33:08 -04:00
package core_test
import (
"context"
"testing"
2021-02-16 15:31:50 -05:00
. "github.com/v2fly/v2ray-core/v4"
2018-10-21 14:33:08 -04:00
)
func TestFromContextPanic(t *testing.T) {
2018-10-21 14:33:08 -04:00
defer func() {
r := recover()
if r == nil {
t.Error("expect panic, but nil")
}
}()
MustFromContext(context.Background())
}
func TestToContextPanic(t *testing.T) {
defer func() {
r := recover()
if r == nil {
t.Error("expect panic, but nil")
}
}()
MustToContext(context.Background(), &Instance{})
}