本文整理匯總了Golang中code/cloudfoundry/org/cli/cf/flags.FlagContext.NewIntFlagWithDefault方法的典型用法代碼示例。如果您正苦於以下問題:Golang FlagContext.NewIntFlagWithDefault方法的具體用法?Golang FlagContext.NewIntFlagWithDefault怎麽用?Golang FlagContext.NewIntFlagWithDefault使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類code/cloudfoundry/org/cli/cf/flags.FlagContext
的用法示例。
在下文中一共展示了FlagContext.NewIntFlagWithDefault方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1:
fc.NewIntFlag("i", "i2", "setting new int flag")
fc.Parse("-i", "5")
Expect(fc.IsSet("i")).To(BeTrue())
Expect(fc.IsSet("i2")).To(BeTrue())
Expect(fc.Int("i")).To(Equal(5))
Expect(fc.Int("i2")).To(Equal(5))
})
})
Describe("NewIntFlagWithDefault()", func() {
It("init the flag context with a new int flagset with default value", func() {
fc.Parse("-i", "5")
Expect(fc.IsSet("i")).To(BeFalse())
Expect(fc.Int("i")).To(Equal(0))
fc.NewIntFlagWithDefault("i", "i2", "setting new int flag", 10)
fc.Parse()
Expect(fc.IsSet("i")).To(BeTrue())
Expect(fc.IsSet("i2")).To(BeTrue())
Expect(fc.Int("i")).To(Equal(10))
Expect(fc.Int("i2")).To(Equal(10))
})
})
Describe("NewFloat64Flag()", func() {
It("init the flag context with a new float64 flagset", func() {
fc.Parse("-f", "5.5")
Expect(fc.IsSet("f")).To(BeFalse())
Expect(fc.Float64("f")).To(Equal(float64(0)))
fc.NewFloat64Flag("f", "f2", "setting new flag")