func TestStdContextEmbedded(t *testing.T) { c := new(context) sc := gcontext.WithValue(nil, "key", "val") c.SetStdContext(sc) assert.NotEqual(t, c, c.StdContext()) }
func (c *echoContext) Set(key string, val interface{}) { c.context = context.WithValue(c.context, key, val) }