public void CoreSettingUpdateWithUrlTest(string propertyName, InputType inputType)
 {
     ValidationTestUtility.PerformUrlValidationTest(_testConnection, propertyName, inputType, GenerateSettingUpdateRequest(),
                                                    new Dictionary <string, string> {
         ["companyId"] = AuthenticationInfoProvider.Current.DefaultPartition
     });
 }
 public void CoreSettingGetTest(string propertyName, InputType inputType)
 {
     ValidationTestUtility.PerformUrlValidationTest(_testConnection, CommonConstants.SettingCoreApiUrl, propertyName, inputType,
                                                    new Dictionary <string, string> {
         ["companyId"] = AuthenticationInfoProvider.Current.DefaultPartition
     });
 }
 public void UISettingUpdateWithUrlTest(string propertyName, InputType inputType)
 {
     ValidationTestUtility.PerformUrlValidationTest(AuthApiConnection.GetConnectionForCurrentTest(), propertyName, inputType, GenerateSettingUpdateRequest(),
                                                    new Dictionary <string, string> {
         ["companyId"] = AuthenticationInfoProvider.Current.DefaultPartition
     }, CommonConstants.SettingUIUrl);
 }