http urls monitor.

test_helpers.go 428B

1234567891011121314151617
  1. // Copyright 2017 Manu Martinez-Almeida. All rights reserved.
  2. // Use of this source code is governed by a MIT style
  3. // license that can be found in the LICENSE file.
  4. package gin
  5. import "net/http"
  6. // CreateTestContext returns a fresh engine and context for testing purposes
  7. func CreateTestContext(w http.ResponseWriter) (c *Context, r *Engine) {
  8. r = New()
  9. c = r.allocateContext()
  10. c.reset()
  11. c.writermem.reset(w)
  12. return
  13. }