| 98 | S3Environment() : ec2_metadata_disabled_guard_("AWS_EC2_METADATA_DISABLED", "true") {} |
| 99 | |
| 100 | void SetUp() override { |
| 101 | // Change this to increase logging during tests |
| 102 | S3GlobalOptions options; |
| 103 | options.log_level = S3LogLevel::Fatal; |
| 104 | ASSERT_OK(InitializeS3(options)); |
| 105 | } |
| 106 | |
| 107 | void TearDown() override { ASSERT_OK(FinalizeS3()); } |
| 108 |
nothing calls this directly
no test coverage detected