// 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 "dynamodb_gtests.h" #include "dynamodb_samples.h" namespace AwsDocTest { // NOLINTNEXTLINE (readability-named-parameter) TEST_F(DynamoDB_GTests, batch_write_item_2_) { bool result = createBatchGetItemTables(); ASSERT_TRUE(result) << preconditionError(); result = AwsDoc::DynamoDB::batchWriteItem(TESTS_DIR "/ProductCatalog.json", *s_clientConfig); ASSERT_TRUE(result); result = AwsDoc::DynamoDB::batchWriteItem(TESTS_DIR "/Forum.json", *s_clientConfig); ASSERT_TRUE(result); s_batchTablesPopulated = true; } } // AwsDocTest