(t *testing.T)
| 439 | testFileWriterIntegrationCheckRecords(t, filepath.Join("TMPDIR", "{{.Year}}{{.Month}}{{.Day}}{{.Hour}}{{.Minute}}{{.Second}}-out.csv.zst"), procs, rotate) |
| 440 | } |
| 441 | func TestFileWriterIntegrationProcs(t *testing.T) { |
| 442 | const procs = 8 |
| 443 | const rotate = -1 |
| 444 | testFileWriterIntegrationCheckRecords(t, filepath.Join("TMPDIR", "{{.Index}}-out.csv.zst"), procs, rotate) |
| 445 | } |
| 446 | |
| 447 | func TestFileWriterIntegrationProcsFields0(t *testing.T) { |
| 448 | const procs = 8 |
nothing calls this directly
no test coverage detected