github.com/pf-qiu/concourse/v6@v6.7.3-0.20201207032516-1f455d73275f/atc/component/cmocks/NotificationsBus.go (about) 1 // Code generated by mockery v2.2.1. DO NOT EDIT. 2 3 package cmocks 4 5 import mock "github.com/stretchr/testify/mock" 6 7 // NotificationsBus is an autogenerated mock type for the NotificationsBus type 8 type NotificationsBus struct { 9 mock.Mock 10 } 11 12 // Listen provides a mock function with given fields: _a0 13 func (_m *NotificationsBus) Listen(_a0 string) (chan bool, error) { 14 ret := _m.Called(_a0) 15 16 var r0 chan bool 17 if rf, ok := ret.Get(0).(func(string) chan bool); ok { 18 r0 = rf(_a0) 19 } else { 20 if ret.Get(0) != nil { 21 r0 = ret.Get(0).(chan bool) 22 } 23 } 24 25 var r1 error 26 if rf, ok := ret.Get(1).(func(string) error); ok { 27 r1 = rf(_a0) 28 } else { 29 r1 = ret.Error(1) 30 } 31 32 return r0, r1 33 } 34 35 // Unlisten provides a mock function with given fields: _a0, _a1 36 func (_m *NotificationsBus) Unlisten(_a0 string, _a1 chan bool) error { 37 ret := _m.Called(_a0, _a1) 38 39 var r0 error 40 if rf, ok := ret.Get(0).(func(string, chan bool) error); ok { 41 r0 = rf(_a0, _a1) 42 } else { 43 r0 = ret.Error(0) 44 } 45 46 return r0 47 }