(t *testing.T, filePath string)
| 19 | ) |
| 20 | |
| 21 | func mustReadFile(t *testing.T, filePath string) []byte { |
| 22 | t.Helper() |
| 23 | content, err := os.ReadFile(filePath) |
| 24 | require.NoError(t, err) |
| 25 | return content |
| 26 | } |
| 27 | |
| 28 | func Test_ParseOperations(t *testing.T) { |
| 29 | const ( |
no outgoing calls
no test coverage detected