Close 关闭CSV写入器
()
| 82 | |
| 83 | // Close 关闭CSV写入器 |
| 84 | func (cw *CSVWriter) Close() error { |
| 85 | if cw.writer != nil { |
| 86 | cw.writer.Flush() |
| 87 | } |
| 88 | if cw.file != nil { |
| 89 | return cw.file.Close() |
| 90 | } |
| 91 | return nil |
| 92 | } |
| 93 | |
| 94 | // ResultProcessor 结果处理器 |
| 95 | type ResultProcessor struct { |
no outgoing calls
no test coverage detected