本文整理汇总了Golang中github.com/cloudfoundry/cli/testhelpers/commands.FakeApplicationStopper.SetDependencyStub方法的典型用法代码示例。如果您正苦于以下问题:Golang FakeApplicationStopper.SetDependencyStub方法的具体用法?Golang FakeApplicationStopper.SetDependencyStub怎么用?Golang FakeApplicationStopper.SetDependencyStub使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/cloudfoundry/cli/testhelpers/commands.FakeApplicationStopper
的用法示例。
在下文中一共展示了FakeApplicationStopper.SetDependencyStub方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1:
app = models.Application{}
app.Name = "my-app"
app.Guid = "my-app-guid"
//save original command and restore later
originalStart = command_registry.Commands.FindCommand("start")
originalStop = command_registry.Commands.FindCommand("stop")
//setup fakes to correctly interact with command_registry
starter.SetDependencyStub = func(_ command_registry.Dependency, _ bool) command_registry.Command {
return starter
}
starter.MetaDataReturns(command_registry.CommandMetadata{Name: "start"})
stopper.SetDependencyStub = func(_ command_registry.Dependency, _ bool) command_registry.Command {
return stopper
}
stopper.MetaDataReturns(command_registry.CommandMetadata{Name: "stop"})
})
AfterEach(func() {
command_registry.Register(originalStart)
command_registry.Register(originalStop)
})
Describe("requirements", func() {
It("fails with usage when not provided exactly one arg", func() {
requirementsFactory.LoginSuccess = true
runCommand()
Expect(ui.Outputs).To(ContainSubstrings(
[]string{"Incorrect Usage", "Requires an argument"},