(t *testing.T, configuration config.Configuration, branchName string)
| 2295 | } |
| 2296 | |
| 2297 | func assertMobSessionBranches(t *testing.T, configuration config.Configuration, branchName string) { |
| 2298 | branch := newBranch(branchName) |
| 2299 | if !branch.hasRemoteBranch(configuration) { |
| 2300 | failWithFailure(t, branch.remote(configuration).Name, "none") |
| 2301 | } |
| 2302 | if !branch.hasLocalBranch() { |
| 2303 | failWithFailure(t, branchName, "none") |
| 2304 | } |
| 2305 | } |
| 2306 | |
| 2307 | func assertLocalBranch(t *testing.T, branch string) { |
| 2308 | if !newBranch(branch).hasLocalBranch() { |
no test coverage detected