forked from ory/fosite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rw.go
60 lines (47 loc) · 1.49 KB
/
rw.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
// Automatically generated by MockGen. DO NOT EDIT!
// Source: rw.go
package internal
import (
http "net/http"
gomock "github.com/golang/mock/gomock"
)
// Mock of ResponseWriter interface
type MockResponseWriter struct {
ctrl *gomock.Controller
recorder *_MockResponseWriterRecorder
}
// Recorder for MockResponseWriter (not exported)
type _MockResponseWriterRecorder struct {
mock *MockResponseWriter
}
func NewMockResponseWriter(ctrl *gomock.Controller) *MockResponseWriter {
mock := &MockResponseWriter{ctrl: ctrl}
mock.recorder = &_MockResponseWriterRecorder{mock}
return mock
}
func (_m *MockResponseWriter) EXPECT() *_MockResponseWriterRecorder {
return _m.recorder
}
func (_m *MockResponseWriter) Header() http.Header {
ret := _m.ctrl.Call(_m, "Header")
ret0, _ := ret[0].(http.Header)
return ret0
}
func (_mr *_MockResponseWriterRecorder) Header() *gomock.Call {
return _mr.mock.ctrl.RecordCall(_mr.mock, "Header")
}
func (_m *MockResponseWriter) Write(_param0 []byte) (int, error) {
ret := _m.ctrl.Call(_m, "Write", _param0)
ret0, _ := ret[0].(int)
ret1, _ := ret[1].(error)
return ret0, ret1
}
func (_mr *_MockResponseWriterRecorder) Write(arg0 interface{}) *gomock.Call {
return _mr.mock.ctrl.RecordCall(_mr.mock, "Write", arg0)
}
func (_m *MockResponseWriter) WriteHeader(_param0 int) {
_m.ctrl.Call(_m, "WriteHeader", _param0)
}
func (_mr *_MockResponseWriterRecorder) WriteHeader(arg0 interface{}) *gomock.Call {
return _mr.mock.ctrl.RecordCall(_mr.mock, "WriteHeader", arg0)
}