(t *testing.T)
| 80 | } |
| 81 | |
| 82 | func TestLoadFileToBuffer_Compressed(t *testing.T) { |
| 83 | b := createNewBuffer() |
| 84 | err := loadFileToBuffer("./data/test/compressed_data.csv.gz", b) |
| 85 | if err != nil { |
| 86 | t.Skipf("Compressed test file not found: %v", err) |
| 87 | return |
| 88 | } |
| 89 | |
| 90 | if b.rowLen < 5 { |
| 91 | t.Errorf("Expected data from compressed file, got %d rows", b.rowLen) |
| 92 | } |
| 93 | } |
| 94 | |
| 95 | func TestLoadFileToBuffer_TSV(t *testing.T) { |
| 96 | b := createNewBuffer() |
nothing calls this directly
no test coverage detected