def setUp(self): # pylint: disable=invalid-name """Set up things to be run when tests are started.""" login = "******" passwd = "testpasswd" recipient = "06501234567" client = yessssms.YesssSMS(login, passwd) self.yessssms = yessssms.YesssSMSNotificationService(client, recipient)
def yessssms_init(): """Set up things to be run when tests are started.""" login = "******" passwd = "testpasswd" recipient = "06501234567" client = yessssms.YesssSMS(login, passwd) return yessssms.YesssSMSNotificationService(client, recipient)