// 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/browser/companion/text_finder/text_finder.h" #include "testing/gtest/include/gtest/gtest.h" #include "third_party/blink/public/mojom/annotation/annotation.mojom.h" #include "ui/gfx/geometry/rect.h" namespace companion { class TextFinderTest : public testing::Test { … }; TEST_F(TextFinderTest, FoundTextTest) { … } TEST_F(TextFinderTest, NotFoundTextTest) { … } } // namespace companion