mirror of https://github.com/v2ray/v2ray-core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
248 B
20 lines
248 B
6 years ago
|
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())
|
||
|
}
|