File tree Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -53,6 +53,17 @@ def testCreateSubscription(self):
53
53
response = arbcreatesubscriptioncontroller .getresponse ()
54
54
self .assertIsNotNone (response .subscriptionId )
55
55
self .assertEquals ('Ok' , response .messages .resultCode )
56
+
57
+ def testgetsubscription (self ):
58
+
59
+ getSubscription = apicontractsv1 .ARBGetSubscriptionRequest ()
60
+ getSubscription .merchantAuthentication = self .merchantAuthentication
61
+ getSubscription .subscriptionId = "2952220"
62
+ getSubscriptionController = ARBGetSubscriptionController (getSubscription )
63
+ getSubscriptionController .execute ()
64
+ response = getSubscriptionController .getresponse ()
65
+ self .assertIsNotNone (response .subscription .name )
66
+ self .assertEquals ('Ok' , response .messages .resultCode )
56
67
57
68
def testcancelSubscription (self ):
58
69
You can’t perform that action at this time.
0 commit comments