MCPcopy Create free account
hub / github.com/codechenx/FastTableViewer / TestLoadFileToBuffer_SpecialChars

Function TestLoadFileToBuffer_SpecialChars

io_test.go:69–80  ·  view source on GitHub ↗
(t *testing.T)

Source from the content-addressed store, hash-verified

67}
68
69func 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
82func TestLoadFileToBuffer_Compressed(t *testing.T) {
83 b := createNewBuffer()

Callers

nothing calls this directly

Calls 2

createNewBufferFunction · 0.85
loadFileToBufferFunction · 0.85

Tested by

no test coverage detected