(t *testing.T, branch string)
| 2311 | } |
| 2312 | |
| 2313 | func assertNoLocalBranch(t *testing.T, branch string) { |
| 2314 | if newBranch(branch).hasLocalBranch() { |
| 2315 | failWithFailure(t, branch, "none") |
| 2316 | } |
| 2317 | } |
| 2318 | |
| 2319 | func assertNoMobSessionBranches(t *testing.T, configuration config.Configuration, branchName string) { |
| 2320 | branch := newBranch(branchName) |
no test coverage detected