})
	})

	Context("#GetSoftLayer_Virtual_Guest_Service", func() {
		It("returns a instance implemementing the SoftLayer_Virtual_Guest_Service interface", func() {
			var virtualGuestService softlayer.SoftLayer_Virtual_Guest_Service
			virtualGuestService, err := client.GetSoftLayer_Virtual_Guest_Service()
			Expect(err).ToNot(HaveOccurred())
			Expect(virtualGuestService).ToNot(BeNil())
		})
	})

	Context("#GetSoftLayer_Ssh_Key_Service", func() {
		It("returns a instance implemementing the SoftLayer_Ssh_Key_Service interface", func() {
			var sshKeyService softlayer.SoftLayer_Security_Ssh_Key_Service
			sshKeyService, err := client.GetSoftLayer_Security_Ssh_Key_Service()
			Expect(err).ToNot(HaveOccurred())
			Expect(sshKeyService).ToNot(BeNil())
		})
	})

	Context("#GetSoftLayer_Product_Order_Service", func() {
		It("returns a instance implemementing the SoftLayer_Product_Order_Service interface", func() {
			var productOrderService softlayer.SoftLayer_Product_Order_Service
			productOrderService, err := client.GetSoftLayer_Product_Order_Service()
			Expect(err).ToNot(HaveOccurred())
			Expect(productOrderService).ToNot(BeNil())
		})
	})

	Context("#GetSoftLayer_Product_Package_Service", func() {