本文整理汇总了Golang中github.com/concourse/atc/exec/fakes.FakeGetDelegate.StdoutReturns方法的典型用法代码示例。如果您正苦于以下问题:Golang FakeGetDelegate.StdoutReturns方法的具体用法?Golang FakeGetDelegate.StdoutReturns怎么用?Golang FakeGetDelegate.StdoutReturns使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/concourse/atc/exec/fakes.FakeGetDelegate
的用法示例。
在下文中一共展示了FakeGetDelegate.StdoutReturns方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1:
getDelegate *fakes.FakeGetDelegate
resourceConfig atc.ResourceConfig
params atc.Params
version atc.Version
tags []string
inStep *fakes.FakeStep
repo *SourceRepository
step Step
process ifrit.Process
)
BeforeEach(func() {
getDelegate = new(fakes.FakeGetDelegate)
getDelegate.StdoutReturns(stdoutBuf)
getDelegate.StderrReturns(stderrBuf)
resourceConfig = atc.ResourceConfig{
Name: "some-resource",
Type: "some-resource-type",
Source: atc.Source{"some": "source"},
}
params = atc.Params{"some-param": "some-value"}
version = atc.Version{"some-version": "some-value"}
tags = []string{"some", "tags"}
inStep = new(fakes.FakeStep)