| 6 | ) |
| 7 | |
| 8 | type DefaultACLProvider struct { |
| 9 | CheckACLStub func(string, string, interface{}) error |
| 10 | checkACLMutex sync.RWMutex |
| 11 | checkACLArgsForCall []struct { |
| 12 | arg1 string |
| 13 | arg2 string |
| 14 | arg3 interface{} |
| 15 | } |
| 16 | checkACLReturns struct { |
| 17 | result1 error |
| 18 | } |
| 19 | checkACLReturnsOnCall map[int]struct { |
| 20 | result1 error |
| 21 | } |
| 22 | CheckACLNoChannelStub func(string, interface{}) error |
| 23 | checkACLNoChannelMutex sync.RWMutex |
| 24 | checkACLNoChannelArgsForCall []struct { |
| 25 | arg1 string |
| 26 | arg2 interface{} |
| 27 | } |
| 28 | checkACLNoChannelReturns struct { |
| 29 | result1 error |
| 30 | } |
| 31 | checkACLNoChannelReturnsOnCall map[int]struct { |
| 32 | result1 error |
| 33 | } |
| 34 | IsPtypePolicyStub func(string) bool |
| 35 | isPtypePolicyMutex sync.RWMutex |
| 36 | isPtypePolicyArgsForCall []struct { |
| 37 | arg1 string |
| 38 | } |
| 39 | isPtypePolicyReturns struct { |
| 40 | result1 bool |
| 41 | } |
| 42 | isPtypePolicyReturnsOnCall map[int]struct { |
| 43 | result1 bool |
| 44 | } |
| 45 | invocations map[string][][]interface{} |
| 46 | invocationsMutex sync.RWMutex |
| 47 | } |
| 48 | |
| 49 | func (fake *DefaultACLProvider) CheckACL(arg1 string, arg2 string, arg3 interface{}) error { |
| 50 | fake.checkACLMutex.Lock() |
nothing calls this directly
no outgoing calls
no test coverage detected