Versions in this module Expand all Collapse all v1 v1.0.4 Apr 20, 2020 Changes in this version + type HttpTester struct + func (h *HttpTester) DELETE(uri string, param interface{}) (int, *e.Response) + func (h *HttpTester) GET(uri string) (int, *e.Response) + func (h *HttpTester) PATCH(uri string, param interface{}) (int, *e.Response) + func (h *HttpTester) POST(uri string, param interface{}) (int, *e.Response) + func (h *HttpTester) PUT(uri string, param interface{}) (int, *e.Response) + type HttpTesterInterface interface + DELETE func(uri string, param interface{}) (int, *e.Response) + GET func(uri string) (int, *e.Response) + PATCH func(uri string, param interface{}) (int, *e.Response) + POST func(uri string, param interface{}) (int, *e.Response) + PUT func(uri string, param interface{}) (int, *e.Response) + func NewHttpTester(router *gin.Engine) HttpTesterInterface