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

Function TestIntegration_FullWorkflow

io_test.go:463–477  ·  view source on GitHub ↗

======================================== Integration Tests ========================================

(t *testing.T)

Source from the content-addressed store, hash-verified

461// ========================================
462
463func TestIntegration_FullWorkflow(t *testing.T) {
464 buf := createNewBuffer()
465
466 err := loadFileToBuffer("./data/test/numeric_data.csv", buf)
467 if err != nil {
468 t.Skipf("Integration test skipped: %v", err)
469 return
470 }
471
472 if buf.rowLen > 1 {
473 buf.sortByStr(0, false)
474 }
475
476 t.Log("Integration test completed successfully")
477}

Callers

nothing calls this directly

Calls 3

createNewBufferFunction · 0.85
loadFileToBufferFunction · 0.85
sortByStrMethod · 0.80

Tested by

no test coverage detected