(result1 string)
| 136 | } |
| 137 | |
| 138 | func (fake *FakeScript) PathReturns(result1 string) { |
| 139 | fake.pathMutex.Lock() |
| 140 | defer fake.pathMutex.Unlock() |
| 141 | fake.PathStub = nil |
| 142 | fake.pathReturns = struct { |
| 143 | result1 string |
| 144 | }{result1} |
| 145 | } |
| 146 | |
| 147 | func (fake *FakeScript) PathReturnsOnCall(i int, result1 string) { |
| 148 | fake.pathMutex.Lock() |
no outgoing calls
no test coverage detected