(t *testing.T, path string)
| 259 | } |
| 260 | |
| 261 | func readFile(t *testing.T, path string) []byte { |
| 262 | t.Helper() |
| 263 | content, err := os.ReadFile(path) |
| 264 | require.NoError(t, err) |
| 265 | return content |
| 266 | } |
| 267 | |
| 268 | func readCSV(t *testing.T, path string) [][]string { |
| 269 | t.Helper() |
no outgoing calls
no test coverage detected