2017-06-12 09:04:52 +03: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.
|
|
|
|
|
2016-09-21 05:16:51 +03:00
|
|
|
package gin
|
|
|
|
|
2018-08-12 05:12:33 +03:00
|
|
|
import "net/http"
|
2016-09-21 05:16:51 +03:00
|
|
|
|
2017-07-02 18:06:53 +03:00
|
|
|
// CreateTestContext returns a fresh engine and context for testing purposes
|
2016-09-21 05:16:51 +03:00
|
|
|
func CreateTestContext(w http.ResponseWriter) (c *Context, r *Engine) {
|
|
|
|
r = New()
|
|
|
|
c = r.allocateContext()
|
|
|
|
c.reset()
|
|
|
|
c.writermem.reset(w)
|
|
|
|
return
|
|
|
|
}
|