======================================== Integration Tests ========================================
(t *testing.T)
| 461 | // ======================================== |
| 462 | |
| 463 | func 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 | } |
nothing calls this directly
no test coverage detected