summaryrefslogtreecommitdiff
path: root/vendor/github.com/golang/mock/mockgen/tests/internal_pkg/subdir/internal/pkg/reflect_output/mock.go
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2019-07-02 12:12:53 +0200
committerDimitri Sokolyuk <demon@dim13.org>2019-07-02 12:12:53 +0200
commit473acc61c8392dc7ae303d91568e179c4f105a76 (patch)
treea2070cba25f918cda460387e587dd60551b23894 /vendor/github.com/golang/mock/mockgen/tests/internal_pkg/subdir/internal/pkg/reflect_output/mock.go
parentdd45f63209a8e51979b11182253ee80b5289c10a (diff)
add black list
Diffstat (limited to 'vendor/github.com/golang/mock/mockgen/tests/internal_pkg/subdir/internal/pkg/reflect_output/mock.go')
-rw-r--r--vendor/github.com/golang/mock/mockgen/tests/internal_pkg/subdir/internal/pkg/reflect_output/mock.go46
1 files changed, 0 insertions, 46 deletions
diff --git a/vendor/github.com/golang/mock/mockgen/tests/internal_pkg/subdir/internal/pkg/reflect_output/mock.go b/vendor/github.com/golang/mock/mockgen/tests/internal_pkg/subdir/internal/pkg/reflect_output/mock.go
deleted file mode 100644
index 47ccf0c..0000000
--- a/vendor/github.com/golang/mock/mockgen/tests/internal_pkg/subdir/internal/pkg/reflect_output/mock.go
+++ /dev/null
@@ -1,46 +0,0 @@
-// Code generated by MockGen. DO NOT EDIT.
-// Source: github.com/golang/mock/mockgen/tests/internal_pkg/subdir/internal/pkg (interfaces: Intf)
-
-// Package mock_pkg is a generated GoMock package.
-package mock_pkg
-
-import (
- gomock "github.com/golang/mock/gomock"
- pkg "github.com/golang/mock/mockgen/tests/internal_pkg/subdir/internal/pkg"
- reflect "reflect"
-)
-
-// MockIntf is a mock of Intf interface
-type MockIntf struct {
- ctrl *gomock.Controller
- recorder *MockIntfMockRecorder
-}
-
-// MockIntfMockRecorder is the mock recorder for MockIntf
-type MockIntfMockRecorder struct {
- mock *MockIntf
-}
-
-// NewMockIntf creates a new mock instance
-func NewMockIntf(ctrl *gomock.Controller) *MockIntf {
- mock := &MockIntf{ctrl: ctrl}
- mock.recorder = &MockIntfMockRecorder{mock}
- return mock
-}
-
-// EXPECT returns an object that allows the caller to indicate expected use
-func (m *MockIntf) EXPECT() *MockIntfMockRecorder {
- return m.recorder
-}
-
-// F mocks base method
-func (m *MockIntf) F() pkg.Arg {
- ret := m.ctrl.Call(m, "F")
- ret0, _ := ret[0].(pkg.Arg)
- return ret0
-}
-
-// F indicates an expected call of F
-func (mr *MockIntfMockRecorder) F() *gomock.Call {
- return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "F", reflect.TypeOf((*MockIntf)(nil).F))
-}