| 253 | } |
| 254 | |
| 255 | type bodyFileTestIO struct { |
| 256 | open func(string) (fileio.File, error) |
| 257 | } |
| 258 | |
| 259 | func (fio bodyFileTestIO) Open(name string) (fileio.File, error) { |
| 260 | return fio.open(name) |
nothing calls this directly
no outgoing calls
no test coverage detected