File: mock_matcher.go

package info (click to toggle)
golang-github-golang-mock 0.0~git20150821.0.06883d9-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 228 kB
  • ctags: 273
  • sloc: sh: 6; makefile: 4
file content (49 lines) | stat: -rw-r--r-- 1,157 bytes parent folder | download | duplicates (2)
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
// Automatically generated by MockGen. DO NOT EDIT!
// Source: github.com/golang/mock/gomock (interfaces: Matcher)

package mock_gomock

import (
	gomock "github.com/golang/mock/gomock"
)

// Mock of Matcher interface
type MockMatcher struct {
	ctrl     *gomock.Controller
	recorder *_MockMatcherRecorder
}

// Recorder for MockMatcher (not exported)
type _MockMatcherRecorder struct {
	mock *MockMatcher
}

func NewMockMatcher(ctrl *gomock.Controller) *MockMatcher {
	mock := &MockMatcher{ctrl: ctrl}
	mock.recorder = &_MockMatcherRecorder{mock}
	return mock
}

func (_m *MockMatcher) EXPECT() *_MockMatcherRecorder {
	return _m.recorder
}

func (_m *MockMatcher) Matches(_param0 interface{}) bool {
	ret := _m.ctrl.Call(_m, "Matches", _param0)
	ret0, _ := ret[0].(bool)
	return ret0
}

func (_mr *_MockMatcherRecorder) Matches(arg0 interface{}) *gomock.Call {
	return _mr.mock.ctrl.RecordCall(_mr.mock, "Matches", arg0)
}

func (_m *MockMatcher) String() string {
	ret := _m.ctrl.Call(_m, "String")
	ret0, _ := ret[0].(string)
	return ret0
}

func (_mr *_MockMatcherRecorder) String() *gomock.Call {
	return _mr.mock.ctrl.RecordCall(_mr.mock, "String")
}