| 6 | ) |
| 7 | |
| 8 | type ACLProvider 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 | invocations map[string][][]interface{} |
| 35 | invocationsMutex sync.RWMutex |
| 36 | } |
| 37 | |
| 38 | func (fake *ACLProvider) CheckACL(arg1 string, arg2 string, arg3 interface{}) error { |
| 39 | fake.checkACLMutex.Lock() |
nothing calls this directly
no outgoing calls
no test coverage detected