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