(t *testing.T, exp interface{}, act interface{})
| 2347 | } |
| 2348 | |
| 2349 | func failWithFailure(t *testing.T, exp interface{}, act interface{}) { |
| 2350 | _, file, line, _ := runtime.Caller(1) |
| 2351 | fmt.Printf("\033[31m%s:%d:\n\n\texp: %#v\n\n\tgot: %#v\033[39m\n\n", filepath.Base(file), line, exp, act) |
| 2352 | t.FailNow() |
| 2353 | } |
| 2354 | |
| 2355 | func checkoutAndPushBranch(branch string) { |
| 2356 | git("checkout", "-b", branch) |
no outgoing calls
no test coverage detected