// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 /* * Test types are indicated by the test label ending. * * _1_ Requires credentials, permissions, and AWS resources. * _2_ Requires credentials and permissions. * _3_ Does not require credentials. * */ #include #include #include "../s3_examples.h" #include #include "S3_GTests.h" namespace AwsDocTest { // NOLINTNEXTLINE(readability-named-parameter) TEST_F(S3_GTests, create_bucket_2_) { Aws::String uuid = Aws::Utils::UUID::RandomUUID(); Aws::String bucketName = GetUniqueBucketName(); bool result = AwsDoc::S3::createBucket(bucketName, *s_clientConfig); if (result) { DeleteBucket(bucketName); } ASSERT_TRUE(result); } } // namespace AwsDocTest