#include "components/payments/content/web_app_manifest_section_table.h"
#include <stdint.h>
#include <memory>
#include "base/files/file_path.h"
#include "base/files/scoped_temp_dir.h"
#include "components/webdata/common/web_database.h"
#include "sql/init_status.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace payments {
namespace {
class WebAppManifestSectionTableTest : public testing::Test { … };
TEST_F(WebAppManifestSectionTableTest, GetNonExistManifest) { … }
TEST_F(WebAppManifestSectionTableTest, AddAndGetManifest) { … }
TEST_F(WebAppManifestSectionTableTest, AddAndGetMultipleManifests) { … }
TEST_F(WebAppManifestSectionTableTest, AddAndGetSingleManifestWithTwoIds) { … }
}
}