| 275 | } |
| 276 | |
| 277 | type TestExporter struct { |
| 278 | fields []string |
| 279 | writeHandler func(io *iostreams.IOStreams, data interface{}) error |
| 280 | } |
| 281 | |
| 282 | func MakeTestExporter(fields []string, wh func(io *iostreams.IOStreams, data interface{}) error) *TestExporter { |
| 283 | return &TestExporter{fields: fields, writeHandler: wh} |
nothing calls this directly
no outgoing calls
no test coverage detected