mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-04 14:13:03 +00:00
20 lines
264 B
Go
20 lines
264 B
Go
package core_test
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
. "github.com/xtls/xray-core/core"
|
|
)
|
|
|
|
func TestContextPanic(t *testing.T) {
|
|
defer func() {
|
|
r := recover()
|
|
if r == nil {
|
|
t.Error("expect panic, but nil")
|
|
}
|
|
}()
|
|
|
|
MustFromContext(context.Background())
|
|
}
|