(t *testing.T)
| 434 | } |
| 435 | |
| 436 | func TestFileWriterIntegrationTimestamp(t *testing.T) { |
| 437 | const procs = 1 |
| 438 | const rotate = -1 |
| 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 |
nothing calls this directly
no test coverage detected