(t *testing.T, branch string)
| 2305 | } |
| 2306 | |
| 2307 | func assertLocalBranch(t *testing.T, branch string) { |
| 2308 | if !newBranch(branch).hasLocalBranch() { |
| 2309 | failWithFailure(t, branch, "none") |
| 2310 | } |
| 2311 | } |
| 2312 | |
| 2313 | func assertNoLocalBranch(t *testing.T, branch string) { |
| 2314 | if newBranch(branch).hasLocalBranch() { |
nothing calls this directly
no test coverage detected