| 18 | ) |
| 19 | |
| 20 | type fakeWatchProcess struct { |
| 21 | startErr error |
| 22 | started bool |
| 23 | stopped bool |
| 24 | fileCount int |
| 25 | events []watch.Event |
| 26 | } |
| 27 | |
| 28 | func (f *fakeWatchProcess) Start() error { |
| 29 | f.started = true |
nothing calls this directly
no outgoing calls
no test coverage detected