(format string, args ...interface{})
| 34 | // LogInterface is a simple interface to allow injection of Logf to report serving errors. |
| 35 | type LogInterface interface { |
| 36 | Logf(format string, args ...interface{}) |
| 37 | } |
| 38 | |
| 39 | // FakeHandler is to assist in testing HTTP requests. Notice that FakeHandler is |
no outgoing calls