(format string, args ...interface{})
| 173 | } |
| 174 | |
| 175 | func (c *MockClock) logf(format string, args ...interface{}) { |
| 176 | if c.logFunc != nil { |
| 177 | c.logFunc(format, args...) |
| 178 | } |
| 179 | } |
| 180 | |
| 181 | func (c *MockClock) SetLogf(f func(format string, args ...interface{})) { |
| 182 | c.logFunc = f |
no outgoing calls
no test coverage detected