(test testStruct, t *testing.T)
| 55 | } |
| 56 | |
| 57 | func writeConfigFile(test testStruct, t *testing.T) { |
| 58 | if test.configFileName != "" { |
| 59 | d1 := []byte(test.expectedConfigBody) |
| 60 | err := os.WriteFile(test.configFileName, d1, 0o644) |
| 61 | require.NoError(t, err) |
| 62 | } |
| 63 | } |
no outgoing calls
no test coverage detected