| 25 | } |
| 26 | |
| 27 | int main(int argc, char** argv) |
| 28 | { |
| 29 | parse_args(argc, argv); |
| 30 | Aws::SDKOptions options; |
| 31 | options.loggingOptions.logLevel = Aws::Utils::Logging::LogLevel::Warn; |
| 32 | options.loggingOptions.logger_create_fn = get_console_logger_factory(); |
| 33 | Aws::InitAPI(options); |
| 34 | ::testing::InitGoogleTest(&argc, argv); |
| 35 | int exit_code = RUN_ALL_TESTS(); |
| 36 | Aws::ShutdownAPI(options); |
| 37 | return exit_code; |
| 38 | } |
nothing calls this directly
no test coverage detected