| 481 | GENERIC_FS_TEST_FUNCTIONS(TestAzureHierarchicalNSGeneric); |
| 482 | |
| 483 | TEST(AzureFileSystem, InitializingFilesystemWithoutAccountNameFails) { |
| 484 | AzureOptions options; |
| 485 | ASSERT_RAISES(Invalid, options.ConfigureAccountKeyCredential("account_key")); |
| 486 | |
| 487 | ARROW_EXPECT_OK( |
| 488 | options.ConfigureClientSecretCredential("tenant_id", "client_id", "client_secret")); |
| 489 | ASSERT_RAISES(Invalid, AzureFileSystem::Make(options)); |
| 490 | } |
| 491 | |
| 492 | TEST(AzureFileSystem, InitializeWithDefaultCredential) { |
| 493 | AzureOptions options; |
nothing calls this directly
no test coverage detected