/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include int main(int argc, char** argv) { Aws::SDKOptions options; Aws::Testing::InitPlatformTest(options); options.loggingOptions.logLevel = Aws::Utils::Logging::LogLevel::Trace; Aws::InitAPI(options); ::testing::InitGoogleTest(&argc, argv); int exitCode = RUN_ALL_TESTS(); Aws::ShutdownAPI(options); Aws::Testing::ShutdownPlatformTest(options); return exitCode; }