// Copyright 2021 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/continuous_search/common/title_validator.h" #include "testing/gtest/include/gtest/gtest.h" namespace continuous_search { TEST(TitleValidator, Trim) { … } TEST(TitleValidator, Collapse) { … } TEST(TitleValidator, CollapseAndTrim) { … } TEST(TitleValidator, MaxLengthExceeded) { … } TEST(TitleValidator, MaxLengthAvoided) { … } } // namespace continuous_search