status-go/geth/common/notification_mock.go

51 lines
1.4 KiB
Go
Raw Normal View History

// Code generated by MockGen. DO NOT EDIT.
// Source: geth/common/notification.go
// Package common is a generated GoMock package.
package common
import (
gomock "github.com/golang/mock/gomock"
reflect "reflect"
)
2017-10-11 13:52:11 +00:00
// MockNotifier is a mock of Notifier interface
type MockNotifier struct {
ctrl *gomock.Controller
2017-10-11 13:52:11 +00:00
recorder *MockNotifierMockRecorder
}
2017-10-11 13:52:11 +00:00
// MockNotifierMockRecorder is the mock recorder for MockNotifier
type MockNotifierMockRecorder struct {
mock *MockNotifier
}
2017-10-11 13:52:11 +00:00
// NewMockNotifier creates a new mock instance
func NewMockNotifier(ctrl *gomock.Controller) *MockNotifier {
mock := &MockNotifier{ctrl: ctrl}
mock.recorder = &MockNotifierMockRecorder{mock}
return mock
}
// EXPECT returns an object that allows the caller to indicate expected use
2017-10-11 13:52:11 +00:00
func (m *MockNotifier) EXPECT() *MockNotifierMockRecorder {
return m.recorder
}
2017-10-18 20:17:40 +00:00
// Send mocks base method
func (m *MockNotifier) Send(body interface{}, tokens ...string) error {
2017-10-11 13:52:11 +00:00
varargs := []interface{}{body}
for _, a := range tokens {
varargs = append(varargs, a)
}
2017-10-18 20:17:40 +00:00
ret := m.ctrl.Call(m, "Send", varargs...)
ret0, _ := ret[0].(error)
return ret0
}
2017-10-18 20:17:40 +00:00
// Send indicates an expected call of Send
func (mr *MockNotifierMockRecorder) Send(body interface{}, tokens ...interface{}) *gomock.Call {
2017-10-11 13:52:11 +00:00
varargs := append([]interface{}{body}, tokens...)
2017-10-18 20:17:40 +00:00
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Send", reflect.TypeOf((*MockNotifier)(nil).Send), varargs...)
}