| 213 | } |
| 214 | |
| 215 | type testEditor struct { |
| 216 | edit func(string) (string, error) |
| 217 | } |
| 218 | |
| 219 | func (e testEditor) Edit(filename, text string) (string, error) { |
| 220 | return e.edit(text) |
nothing calls this directly
no outgoing calls
no test coverage detected