FakeBrowser is a fake browser implementation for test purposes
| 2 | |
| 3 | // FakeBrowser is a fake browser implementation for test purposes |
| 4 | type FakeBrowser struct { |
| 5 | RunCallback callback |
| 6 | StartCallback callback |
| 7 | } |
| 8 | |
| 9 | type callback func(url string) error |
| 10 |
nothing calls this directly
no outgoing calls
no test coverage detected