// Copyright 2023 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "chrome/test/base/chrome_render_view_test.h" #include "components/commerce/content/renderer/commerce_web_extractor.h" #include "components/commerce/core/commerce_constants.h" namespace { class CommerceWebExtractorTest : public ChromeRenderViewTest { … }; TEST_F(CommerceWebExtractorTest, TestValidMetaExtraction) { … } TEST_F(CommerceWebExtractorTest, TestInvalidMetaExtraction) { … } } // namespace