(t *testing.T, directory string)
| 2240 | } |
| 2241 | |
| 2242 | func createDirectory(t *testing.T, directory string) (pathToDirectory string) { |
| 2243 | return ensureDirectoryExists(t, workingDir+"/"+directory) |
| 2244 | } |
| 2245 | |
| 2246 | func ensureDirectoryExists(t *testing.T, path string) (pathToDirectory string) { |
| 2247 | err := os.MkdirAll(path, 0755) |
no test coverage detected