| 58 | class S3ModuleTest : public ::testing::Test { |
| 59 | protected: |
| 60 | void SetUp() override { |
| 61 | if (!GetMinioEnv()->IsAvailable()) { |
| 62 | GTEST_SKIP() << "Minio executable not found, skipping tests"; |
| 63 | } |
| 64 | ASSERT_OK_AND_ASSIGN(minio_, GetMinioEnv()->GetOneServer()); |
| 65 | } |
| 66 | std::shared_ptr<MinioTestServer> minio_; |
| 67 | }; |
| 68 |
nothing calls this directly
no test coverage detected