(t *testing.T)
| 147 | } |
| 148 | |
| 149 | func TestStreamJSONLFileNotFound(t *testing.T) { |
| 150 | err := streamJSONLFile("/nonexistent/file.jsonl", func(e db.DLLMatch) {}) |
| 151 | if err == nil { |
| 152 | t.Fatal("expected error for nonexistent file") |
| 153 | } |
| 154 | } |
| 155 | |
| 156 | func TestStreamJSONLFileEmpty(t *testing.T) { |
| 157 | dir := t.TempDir() |
nothing calls this directly
no test coverage detected