(t *testing.T)
| 67 | } |
| 68 | |
| 69 | func TestLoadFileToBuffer_SpecialChars(t *testing.T) { |
| 70 | b := createNewBuffer() |
| 71 | err := loadFileToBuffer("./data/test/special_characters.csv", b) |
| 72 | if err != nil { |
| 73 | t.Skipf("Test file not found: %v", err) |
| 74 | return |
| 75 | } |
| 76 | |
| 77 | if b.rowLen < 3 { |
| 78 | t.Errorf("Expected at least 3 rows for special chars file, got %d", b.rowLen) |
| 79 | } |
| 80 | } |
| 81 | |
| 82 | func TestLoadFileToBuffer_Compressed(t *testing.T) { |
| 83 | b := createNewBuffer() |
nothing calls this directly
no test coverage detected