1// Code generated by MockGen. DO NOT EDIT.
2// Source: input.go
3
4// Package dot_imports is a generated GoMock package.
5package dot_imports
6
7import (
8	bytes "bytes"
9	. "context"
10	gomock "github.com/golang/mock/gomock"
11	. "net/http"
12	reflect "reflect"
13)
14
15// MockWithDotImports is a mock of WithDotImports interface
16type MockWithDotImports struct {
17	ctrl     *gomock.Controller
18	recorder *MockWithDotImportsMockRecorder
19}
20
21// MockWithDotImportsMockRecorder is the mock recorder for MockWithDotImports
22type MockWithDotImportsMockRecorder struct {
23	mock *MockWithDotImports
24}
25
26// NewMockWithDotImports creates a new mock instance
27func NewMockWithDotImports(ctrl *gomock.Controller) *MockWithDotImports {
28	mock := &MockWithDotImports{ctrl: ctrl}
29	mock.recorder = &MockWithDotImportsMockRecorder{mock}
30	return mock
31}
32
33// EXPECT returns an object that allows the caller to indicate expected use
34func (m *MockWithDotImports) EXPECT() *MockWithDotImportsMockRecorder {
35	return m.recorder
36}
37
38// Method1 mocks base method
39func (m *MockWithDotImports) Method1() Request {
40	m.ctrl.T.Helper()
41	ret := m.ctrl.Call(m, "Method1")
42	ret0, _ := ret[0].(Request)
43	return ret0
44}
45
46// Method1 indicates an expected call of Method1
47func (mr *MockWithDotImportsMockRecorder) Method1() *gomock.Call {
48	mr.mock.ctrl.T.Helper()
49	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Method1", reflect.TypeOf((*MockWithDotImports)(nil).Method1))
50}
51
52// Method2 mocks base method
53func (m *MockWithDotImports) Method2() *bytes.Buffer {
54	m.ctrl.T.Helper()
55	ret := m.ctrl.Call(m, "Method2")
56	ret0, _ := ret[0].(*bytes.Buffer)
57	return ret0
58}
59
60// Method2 indicates an expected call of Method2
61func (mr *MockWithDotImportsMockRecorder) Method2() *gomock.Call {
62	mr.mock.ctrl.T.Helper()
63	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Method2", reflect.TypeOf((*MockWithDotImports)(nil).Method2))
64}
65
66// Method3 mocks base method
67func (m *MockWithDotImports) Method3() Context {
68	m.ctrl.T.Helper()
69	ret := m.ctrl.Call(m, "Method3")
70	ret0, _ := ret[0].(Context)
71	return ret0
72}
73
74// Method3 indicates an expected call of Method3
75func (mr *MockWithDotImportsMockRecorder) Method3() *gomock.Call {
76	mr.mock.ctrl.T.Helper()
77	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Method3", reflect.TypeOf((*MockWithDotImports)(nil).Method3))
78}
79