本文整理汇总了Golang中github.com/maximilien/softlayer-go/client/fakes.FakeSoftLayerClient.GetSoftLayer_Billing_Item_Cancellation_Request_Service方法的典型用法代码示例。如果您正苦于以下问题:Golang FakeSoftLayerClient.GetSoftLayer_Billing_Item_Cancellation_Request_Service方法的具体用法?Golang FakeSoftLayerClient.GetSoftLayer_Billing_Item_Cancellation_Request_Service怎么用?Golang FakeSoftLayerClient.GetSoftLayer_Billing_Item_Cancellation_Request_Service使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/maximilien/softlayer-go/client/fakes.FakeSoftLayerClient
的用法示例。
在下文中一共展示了FakeSoftLayerClient.GetSoftLayer_Billing_Item_Cancellation_Request_Service方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1:
billingItemCancellationRequestService softlayer.SoftLayer_Billing_Item_Cancellation_Request_Service
err error
)
BeforeEach(func() {
username = os.Getenv("SL_USERNAME")
Expect(username).ToNot(Equal(""))
apiKey = os.Getenv("SL_API_KEY")
Expect(apiKey).ToNot(Equal(""))
fakeClient = slclientfakes.NewFakeSoftLayerClient(username, apiKey)
Expect(fakeClient).ToNot(BeNil())
billingItemCancellationRequestService, err = fakeClient.GetSoftLayer_Billing_Item_Cancellation_Request_Service()
Expect(err).ToNot(HaveOccurred())
Expect(billingItemCancellationRequestService).ToNot(BeNil())
})
Context("#GetNam", func() {
It("returns the name for the service", func() {
name := billingItemCancellationRequestService.GetName()
Expect(name).To(Equal("SoftLayer_Billing_Item_Cancellation_Request"))
})
})
Context("#CreateObject", func() {
BeforeEach(func() {
fakeClient.DoRawHttpRequestResponse, err = testhelpers.ReadJsonTestFixtures("services", "SoftLayer_Billing_Item_Cancellation_Request_Service_createObject.json")
Expect(err).ToNot(HaveOccurred())
开发者ID:digideskweb,项目名称:bosh-softlayer-cpi,代码行数:30,代码来源:softlayer_billing_item_cancellation_request_test.go