// Copyright 2024 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "components/url_deduplication/docs_url_strip_handler.h" #include <memory> #include "testing/gtest/include/gtest/gtest.h" #include "url/gurl.h" namespace url_deduplication { class DocsURLStripHandlerTest : public ::testing::Test { … }; TEST_F(DocsURLStripHandlerTest, StripURL) { … } TEST_F(DocsURLStripHandlerTest, StripURLNonDocsURL) { … } } // namespace url_deduplication