(t *testing.T, filename string, content string, commitMessage string)
| 2208 | } |
| 2209 | |
| 2210 | func createFileAndCommitIt(t *testing.T, filename string, content string, commitMessage string) { |
| 2211 | createFile(t, filename, content) |
| 2212 | git("add", filename) |
| 2213 | git("commit", "-m", commitMessage) |
| 2214 | } |
| 2215 | |
| 2216 | func createFile(t *testing.T, filename string, content string) (pathToFile string) { |
| 2217 | return createFileInPath(t, workingDir, filename, content) |
no test coverage detected