(t *testing.T, filename string, content string)
| 2214 | } |
| 2215 | |
| 2216 | func createFile(t *testing.T, filename string, content string) (pathToFile string) { |
| 2217 | return createFileInPath(t, workingDir, filename, content) |
| 2218 | } |
| 2219 | |
| 2220 | func createFileInPath(t *testing.T, path, filename, content string) (pathToFile string) { |
| 2221 | contentAsBytes := []byte(content) |
no test coverage detected