(t *testing.T, configuration config.Configuration)
| 2088 | } |
| 2089 | |
| 2090 | func createTestbed(t *testing.T, configuration config.Configuration) { |
| 2091 | workingDir = "" |
| 2092 | |
| 2093 | tempDir = t.TempDir() |
| 2094 | |
| 2095 | say.Say("Creating testbed in temporary directory " + tempDir) |
| 2096 | createTestbedIn(t, tempDir) |
| 2097 | |
| 2098 | setWorkingDir(tempDir + "/local") |
| 2099 | assertOnBranch(t, "master") |
| 2100 | assertNoMobSessionBranches(t, configuration, "mob-session") |
| 2101 | } |
| 2102 | |
| 2103 | func createTestbedIn(t *testing.T, temporaryDirectory string) { |
| 2104 | say.Debug("Creating temporary test assets in " + temporaryDirectory) |
no test coverage detected