本文整理汇总了Golang中github.com/cloudfoundry/cli/cf/api/fakes.FakeAppSummaryRepo.GetSummariesInCurrentSpaceApps方法的典型用法代码示例。如果您正苦于以下问题:Golang FakeAppSummaryRepo.GetSummariesInCurrentSpaceApps方法的具体用法?Golang FakeAppSummaryRepo.GetSummariesInCurrentSpaceApps怎么用?Golang FakeAppSummaryRepo.GetSummariesInCurrentSpaceApps使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/cloudfoundry/cli/cf/api/fakes.FakeAppSummaryRepo
的用法示例。
在下文中一共展示了FakeAppSummaryRepo.GetSummariesInCurrentSpaceApps方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1:
app.InstanceCount = 1
app.Memory = 512
app.DiskQuota = 1024
app.Routes = app1Routes
app2 := models.Application{}
app2.Name = "Application-2"
app2.Guid = "Application-2-guid"
app2.State = "started"
app2.RunningInstances = 1
app2.InstanceCount = 2
app2.Memory = 256
app2.DiskQuota = 1024
app2.Routes = app2Routes
appSummaryRepo.GetSummariesInCurrentSpaceApps = []models.Application{app, app2}
deps = command_registry.NewDependency()
})
runCommand := func(args ...string) bool {
return testcmd.RunCliCommand("apps", args, requirementsFactory, updateCommandDependency, false)
}
Describe("requirements", func() {
It("requires the user to be logged in", func() {
requirementsFactory.LoginSuccess = false
Expect(runCommand()).To(BeFalse())
})