Method
VerboseReturns
(result1 bool, result2 []string)
Source from the content-addressed store, hash-verified
| 4010 | } |
| 4011 | |
| 4012 | func (fake *FakeConfig) VerboseReturns(result1 bool, result2 []string) { |
| 4013 | fake.verboseMutex.Lock() |
| 4014 | defer fake.verboseMutex.Unlock() |
| 4015 | fake.VerboseStub = nil |
| 4016 | fake.verboseReturns = struct { |
| 4017 | result1 bool |
| 4018 | result2 []string |
| 4019 | }{result1, result2} |
| 4020 | } |
| 4021 | |
| 4022 | func (fake *FakeConfig) VerboseReturnsOnCall(i int, result1 bool, result2 []string) { |
| 4023 | fake.verboseMutex.Lock() |
Tested by
no test coverage detected