mtfosbot/vendor/github.com/gin-gonic/gin/test_helpers.go

17 lines
428 B
Go
Raw Normal View History

2018-08-14 09:25:34 +00:00
// Copyright 2017 Manu Martinez-Almeida. All rights reserved.
// Use of this source code is governed by a MIT style
// license that can be found in the LICENSE file.
package gin
2018-11-16 03:10:19 +00:00
import "net/http"
2018-08-14 09:25:34 +00:00
2018-11-16 03:10:19 +00:00
// CreateTestContext returns a fresh engine and context for testing purposes
2018-08-14 09:25:34 +00:00
func CreateTestContext(w http.ResponseWriter) (c *Context, r *Engine) {
r = New()
c = r.allocateContext()
c.reset()
c.writermem.reset(w)
return
}