| 2 | #include "gtest/gtest.h" |
| 3 | |
| 4 | TEST(Config, NonExistFile) { |
| 5 | EXPECT_THROW(InitConfig("s3://abc/a config=notexist/path/s3test.conf"), S3RuntimeError); |
| 6 | } |
| 7 | |
| 8 | TEST(Config, Basic) { |
| 9 | S3Params params = InitConfig("s3://abc/a config=data/s3test.conf section=default"); |
nothing calls this directly
no test coverage detected