29192f92创建于 2018年7月4日历史提交
package mocks

import (
	"net/http"

	"github.com/stretchr/testify/mock"
)

// HandlerMock mocks http.Handler
type HandlerMock struct {
	mock.Mock
}

// ServeHTTP implements http.Handler interface
func (_m *HandlerMock) ServeHTTP(rw http.ResponseWriter, req *http.Request) {
	_m.Called(rw, req)

}