(t *testing.T, file string)
| 307 | } |
| 308 | |
| 309 | func loadJSONValueFile(t *testing.T, file string) any { |
| 310 | t.Helper() |
| 311 | return decodeJSONValue(t, readJSONFile(t, file)) |
| 312 | } |
| 313 | |
| 314 | func readJSONFile(t *testing.T, file string) []byte { |
| 315 | t.Helper() |
no test coverage detected