public TableServiceLiveTestsBase(bool isAsync, TableEndpointType endpointType, RecordedTestMode?recordedTestMode = default) : base(isAsync, recordedTestMode)
 {
     _endpointType = endpointType;
     SanitizedHeaders.Add("My-Custom-Auth-Header");
     UriRegexSanitizers.Add(
         new UriRegexSanitizer(@"([\x0026|&|?]sig=)(?<group>[\w\d%]+)", SanitizeValue)
     {
         GroupForReplace = "group"
     });
 }
 public TableServiceLiveTestsBase(bool isAsync, TableEndpointType endpointType) : base(isAsync)
 {
     _endpointType = endpointType;
     Sanitizer     = new TablesRecordedTestSanitizer();
 }
 public TableClientQueryableLiveTests(bool isAsync, TableEndpointType endpointType) : base(isAsync, endpointType /* To record tests, add this argument, RecordedTestMode.Record */)
 {
 }
 public EnableTenantDiscoveryLiveTests(bool isAsync, TableEndpointType endpointType) : base(
         isAsync,
         endpointType,
         enableTenantDiscovery: true /* To record tests, add this argument, RecordedTestMode.Record */)
 {
 }