Example #1
0
 public void CreateOrUpdateDataSourceIfNotExistsSucceedsOnNoResource()
 {
     Run(() =>
     {
         AccessConditionTests.CreateOrUpdateIfNotExistsSucceedsOnNoResource(
             Data.GetSearchServiceClient().DataSources.CreateOrUpdate,
             CreateTestDataSource);
     });
 }
Example #2
0
 public void CreateOrUpdateIndexerIfNotExistsSucceedsOnNoResource()
 {
     Run(() =>
     {
         AccessConditionTests.CreateOrUpdateIfNotExistsSucceedsOnNoResource(
             Data.GetSearchServiceClient().Indexers.CreateOrUpdate,
             Data.CreateTestIndexer);
     });
 }
Example #3
0
 public void CreateOrUpdateSynonymMapIfNotExistsSucceedsOnNoResource()
 {
     Run(() =>
     {
         AccessConditionTests.CreateOrUpdateIfNotExistsSucceedsOnNoResource(
             Data.GetSearchServiceClient().SynonymMaps.CreateOrUpdate,
             CreateTestSynonymMap);
     });
 }
Example #4
0
 public void CreateOrUpdateIndexIfNotExistsSucceedsOnNoResource()
 {
     Run(() => AccessConditionTests.CreateOrUpdateIfNotExistsSucceedsOnNoResource(CreateOrUpdateIndex, CreateTestIndex));
 }