(t *testing.T, v any)
| 116 | } |
| 117 | |
| 118 | func mustJSONInput(t *testing.T, v any) string { |
| 119 | t.Helper() |
| 120 | |
| 121 | data, err := json.Marshal(v) |
| 122 | if err != nil { |
| 123 | t.Fatal(err) |
| 124 | } |
| 125 | return string(data) |
| 126 | } |
| 127 | |
| 128 | func writeProjectConfig(t *testing.T, root string, cfg config.ProjectConfig) { |
| 129 | t.Helper() |
no outgoing calls
no test coverage detected