type FakeExec …
var _ …
type FakeCommandAction …
func (fake *FakeExec) Command(cmd string, args ...string) exec.Cmd { … }
func (fake *FakeExec) nextCommand(cmd string, args []string) exec.Cmd { … }
func (fake *FakeExec) CommandContext(ctx context.Context, cmd string, args ...string) exec.Cmd { … }
func (fake *FakeExec) LookPath(file string) (string, error) { … }
type FakeCmd …
var _ …
func InitFakeCmd(fake *FakeCmd, cmd string, args ...string) exec.Cmd { … }
type FakeStdIOPipeResponse …
type FakeAction …
func (fake *FakeCmd) SetDir(dir string) { … }
func (fake *FakeCmd) SetStdin(in io.Reader) { … }
func (fake *FakeCmd) SetStdout(out io.Writer) { … }
func (fake *FakeCmd) SetStderr(out io.Writer) { … }
func (fake *FakeCmd) SetEnv(env []string) { … }
func (fake *FakeCmd) StdoutPipe() (io.ReadCloser, error) { … }
func (fake *FakeCmd) StderrPipe() (io.ReadCloser, error) { … }
func (fake *FakeCmd) Start() error { … }
func (fake *FakeCmd) Wait() error { … }
func (fake *FakeCmd) Run() error { … }
func (fake *FakeCmd) CombinedOutput() ([]byte, error) { … }
func (fake *FakeCmd) Output() ([]byte, error) { … }
func (fake *FakeCmd) Stop() { … }
type FakeExitError …
var _ …
func (fake FakeExitError) String() string { … }
func (fake FakeExitError) Error() string { … }
func (fake FakeExitError) Exited() bool { … }
func (fake FakeExitError) ExitStatus() int { … }