(t *testing.T, path, content string)
| 136 | } |
| 137 | |
| 138 | func writeFile(t *testing.T, path, content string) { |
| 139 | t.Helper() |
| 140 | if err := os.WriteFile(path, []byte(content), 0644); err != nil { |
| 141 | t.Fatalf("failed to write test file: %v", err) |
| 142 | } |
| 143 | } |
no outgoing calls
no test coverage detected