(rt http.RoundTripper, branch string, isTTY bool, cli string)
| 24 | ) |
| 25 | |
| 26 | func runCommand(rt http.RoundTripper, branch string, isTTY bool, cli string) (*test.CmdOut, error) { |
| 27 | return runCommandWithDetector(rt, branch, isTTY, cli, &fd.DisabledDetectorMock{}) |
| 28 | } |
| 29 | |
| 30 | func runCommandWithDetector(rt http.RoundTripper, branch string, isTTY bool, cli string, detector fd.Detector) (*test.CmdOut, error) { |
| 31 | ios, _, stdout, stderr := iostreams.Test() |
no test coverage detected