(t *testing.T, dir, name string)
| 197 | } |
| 198 | |
| 199 | func createDir(t *testing.T, dir, name string) { |
| 200 | t.Helper() |
| 201 | path := filepath.Join(dir, name) |
| 202 | err := os.MkdirAll(path, 0755) |
| 203 | require.NoError(t, err) |
| 204 | } |
no outgoing calls
no test coverage detected