| 92 | S3Environment() : ec2_metadata_disabled_guard_("AWS_EC2_METADATA_DISABLED", "true") {} |
| 93 | |
| 94 | void SetUp() override { |
| 95 | // Change this to increase logging during tests |
| 96 | S3GlobalOptions options; |
| 97 | options.log_level = S3LogLevel::Fatal; |
| 98 | ASSERT_OK(InitializeS3(options)); |
| 99 | } |
| 100 | |
| 101 | void TearDown() override { ASSERT_OK(FinalizeS3()); } |
| 102 |
nothing calls this directly
no test coverage detected