public void ShouldGeneratePhoneVerificationCode() { int profileId = 324784; string countryCode = ""; string phoneNumber = ""; IApiRequest apiRequest = new ApiRequest(requestSettings); var verificationResponse = apiRequest.GetPhoneVerificationCode(profileId, countryCode, phoneNumber); Assert.IsNotNull(verificationResponse); Assert.AreEqual(countryCode, verificationResponse.CountryCode); }